Browse Source

DEC-8 设计器远程干涉服务器缓存问题

master
zack 7 years ago
parent
commit
b48b354e0e
  1. 5
      designer/src/com/fr/start/Designer.java
  2. 4
      designer_base/src/com/fr/env/RemoteEnv.java

5
designer/src/com/fr/start/Designer.java

@ -36,7 +36,6 @@ import com.fr.general.Inter;
import com.fr.stable.ProductConstants; import com.fr.stable.ProductConstants;
import com.fr.stable.StableUtils; import com.fr.stable.StableUtils;
import com.fr.stable.StringUtils; import com.fr.stable.StringUtils;
import com.fr.stable.web.ServletContext;
import com.fr.stable.xml.XMLTools; import com.fr.stable.xml.XMLTools;
import javax.swing.*; import javax.swing.*;
@ -434,9 +433,7 @@ public class Designer extends BaseDesigner {
collector.collectStopTime(); collector.collectStopTime();
collector.saveXMLFile(); collector.saveXMLFile();
Env currentEnv = FRContext.getCurrentEnv(); Env currentEnv = FRContext.getCurrentEnv();
if (!currentEnv.isRemoteEnv()) {//远程环境不需要触发stop currentEnv.envQuit();
ServletContext.fireServletStopListener();
}
} }
} }

4
designer_base/src/com/fr/env/RemoteEnv.java vendored

@ -2284,7 +2284,7 @@ public class RemoteEnv extends AbstractEnv {
} }
@Override @Override
public boolean isRemoteEnv() { public void envQuit() {
return true;
} }
} }
Loading…
Cancel
Save