本文介紹了嵌入Tomcat 8的共享類加載器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我已將Tomcat從7.0.34版升級到8.0.33版,從那以后,我一直面臨共享Web應用程序上下文和Junit上下文的問題。
我有一個帶有Singleton類的Web應用程序,它收集有關該Web應用程序的統計數據。我還有在嵌入式Tomcat中運行Web應用程序的Junit。Junit查詢Web應用程序,然后檢查統計數據。
我試著做一個簡單的例子:
單件:
public class Counter {
private static Counter instance;
private AtomicLong counter;
private Counter(){}
public static Counter getInstance(){
if(instance == null){
synchronized (Counter.class) {
if(instance == null){
instance = new Counter();
}
}
}
return instance;
}
public long incrementAndGet(){
return counter.incrementAndGet();
}
public long getValue(){
return counter.get();
}
}
Servlet:
@WebServlet(name="servlet",loadOnStartup=1, urlPatterns="/servletTest")
public class Servlet extends HttpServlet{
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.getWriter().write("Hi, you are the #" + Counter.getInstance().incrementAndGet() + " visitor");
}
}
contextListener:
public class MyContextListener implements ServletContextListener{
@Override
public void contextDestroyed(ServletContextEvent arg0) {}
@Override
public void contextInitialized(ServletContextEvent arg0) {
Counter.getInstance().incrementAndGet();
}
}
測試單位:
public void mainTest() throws ServletException, LifecycleException{
Tomcat tomcat = new Tomcat();
tomcat.setPort(50000);
StandardContext ctx = (StandardContext) tomcat.addWebapp("/fe", System.getProperty("FEBaseDir")); //The FEBaseDir property is supposed to be taken from Maven build using 'test' profile
tomcat.start();
Counter.getInstance().getValue();
}
當我使用Tomcat7時,一切都運行正常。但是自從我把Tomcat升級到Tomcat 8.0.33之后,它就不能工作了。包含靜態數據的單例類加載兩次。先是Tomcat,然后是Junit本身。
我已嘗試向Tomcat傳遞類加載器,但不起作用。
public void mainTest() throws ServletException, LifecycleException{
Tomcat tomcat = new Tomcat();
tomcat.setPort(50000);
StandardContext ctx = (StandardContext) tomcat.addWebapp("/fe", System.getProperty("FEBaseDir")); //The FEBaseDir property is supposed to be taken from Maven build using 'test' profile
ctx.setCrossContext(true);
ctx.setLoader((Loader) new WebappLoader(Thread.currentThread().getContextClassLoader()));
ctx.setParentClassLoader(Thread.currentThread().getContextClassLoader());
tomcat.getEngine().setParentClassLoader(Thread.currentThread().getContextClassLoader());
tomcat.getHost().setParentClassLoader(Thread.currentThread().getContextClassLoader());
tomcat.getService().setParentClassLoader(Thread.currentThread().getContextClassLoader());
tomcat.getServer().setParentClassLoader(Thread.currentThread().getContextClassLoader());
tomcat.start();
Counter.getInstance().getValue();
}
我做錯了什么?
推薦答案
您可以嘗試使用StandardContext
中的setDelegate方法來阻止Web應用程序類加載器重新加載Counter
類,但這會以一種不好的方式影響安全性,因此我建議不要這樣做。
公開統計信息的常用方法是使用JMX(MBean)。您可以通過使用值true
調用StandardContext
中的setUseNaming方法來啟用此功能。
您可以這樣注冊一個mBean(復制自here):
MBeanServer mBeanServer = ManagementFactory.getPlatformMBeanServer();
ObjectName beanPoolName = new ObjectName("com.zaxxer.hikari:type=Pool (" + poolName + ")");
mBeanServer.registerMBean(hikariPool, beanPoolName);
您可以檢索如下所示的值(從here復制):
MBeanServer mBeanServer = ManagementFactory.getPlatformMBeanServer();
ObjectName poolName = new ObjectName("com.zaxxer.hikari:type=Pool (foo)");
HikariPoolMXBean poolProxy = JMX.newMXBeanProxy(mBeanServer, poolName, HikariPoolMXBean.class);
int idleConnections = poolProxy.getIdleConnections();
另請參閱this SO question,您可能需要閱讀更多文檔(根據我的經驗,理解整個JMX并使其正常工作需要一些時間)。不過,我還沒有嘗試過將其與單元測試結合使用,所以YMMV。
這篇關于嵌入Tomcat 8的共享類加載器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,