From d0b4c71d5596333139914a74fe80b7e22b2b95be Mon Sep 17 00:00:00 2001 From: MoMeak Date: Wed, 7 Feb 2018 11:57:20 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-6813=2010.0=E5=B0=86jetty=E6=8D=A2?= =?UTF-8?q?=E6=88=90Tomcat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/com/fr/start/server/FRTomcat.java | 2 +- .../src/com/fr/start/server/TomcatHost.java | 43 +++++++++---------- 2 files changed, 22 insertions(+), 23 deletions(-) diff --git a/designer_base/src/com/fr/start/server/FRTomcat.java b/designer_base/src/com/fr/start/server/FRTomcat.java index ff522dda2..46c529697 100644 --- a/designer_base/src/com/fr/start/server/FRTomcat.java +++ b/designer_base/src/com/fr/start/server/FRTomcat.java @@ -24,7 +24,7 @@ public class FRTomcat extends Tomcat{ Context ctx = createContext(host, contextPath); if (ctx instanceof StandardContext) { -// ((StandardContext)ctx).setDelegate(true); + ((StandardContext)ctx).setDelegate(true); } ctx.setPath(contextPath); ctx.setDocBase(docBase); diff --git a/designer_base/src/com/fr/start/server/TomcatHost.java b/designer_base/src/com/fr/start/server/TomcatHost.java index a7e709ba1..533a5f0d2 100644 --- a/designer_base/src/com/fr/start/server/TomcatHost.java +++ b/designer_base/src/com/fr/start/server/TomcatHost.java @@ -1,10 +1,12 @@ package com.fr.start.server; +import com.fr.module.ModuleContext; import java.awt.SystemTray; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintStream; +import java.lang.reflect.Field; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; @@ -20,7 +22,6 @@ import org.apache.catalina.LifecycleException; import org.apache.catalina.Server; import org.apache.catalina.core.AprLifecycleListener; import org.apache.catalina.core.StandardServer; -import org.apache.catalina.startup.Bootstrap; import com.fr.base.Env; import com.fr.base.FRContext; @@ -34,7 +35,6 @@ import com.fr.start.StartServer; public class TomcatHost { private static FRTomcat tomcat; - private static Bootstrap bootstrap; private StandardServer server; private AprLifecycleListener listener; @@ -66,11 +66,11 @@ public class TomcatHost { //直接用自定义的,不用server.xml this.tomcat = new FRTomcat(); this.tomcat.setPort(this.currentPort); - this.tomcat.setBaseDir(ProductConstants.getEnvHome()); + this.tomcat.setBaseDir(StableUtils.getInstallHome()); this.server = (StandardServer) tomcat.getServer(); this.listener = new AprLifecycleListener(); this.server.addLifecycleListener(listener); - this.tomcat.getHost().setAppBase(ProductConstants.getEnvHome() + File.separator + "."); + this.tomcat.getHost().setAppBase(StableUtils.getInstallHome() + File.separator + "."); } catch (Exception e) { //todo 最好加一个用server.xml FRContext.getLogger().error(e.getMessage(), e); @@ -107,14 +107,6 @@ public class TomcatHost { FRContext.getLogger().info("The new Application Path is: \n" + webappsPath + ", it will be added."); if (webAppsMap.get(context) != null) { Context webapp = webAppsMap.remove(context); - try { - if (isStarted()) { - stop(); - } - } catch (Exception e) { - FRContext.getLogger().error(e.getMessage(), e); - } - } try { if (!isStarted()) { @@ -123,7 +115,7 @@ public class TomcatHost { Context webapp = tomcat.addWebapp(context, webappsPath); webAppsMap.put(context, webapp); } catch (Exception e) { - e.printStackTrace(); + FRContext.getLogger().error(e.getMessage(), e); } } @@ -153,20 +145,29 @@ public class TomcatHost { return server; } + //MoMeak:调试用,等ju那边联调好了删 + private void setRootNull(){ + Class clazz = ModuleContext.class; + try { + Field field = clazz.getDeclaredField("root"); + field.setAccessible(true); + field.set(null,null); + } catch (NoSuchFieldException e) { + e.printStackTrace(); + } catch (IllegalAccessException e) { + e.printStackTrace(); + } + } + /** * Start * * @throws Exception */ public void start() throws Exception { - + //MoMeak:调试用 + setRootNull(); tomcat.start(); -// bootstrap.setCatalinaHome("/Users/momeak/Documents/Working/develop/others/tomcatsrc/WebReport"); -// bootstrap.init(); -// bootstrap.setAwait(false); -// -// bootstrap.start(); - for (int i = 0; i < listenerList.size(); i++) { TomcatServerListener listener = TomcatHost.this.getLinstener(i); listener.started(this); @@ -181,8 +182,6 @@ public class TomcatHost { public void stop() throws Exception { tomcat.stop(); -// bootstrap.stop(); - for (int i = 0; i < listenerList.size(); i++) { TomcatServerListener listener = this.getLinstener(i);