嵌入式Tomcat 8的共享类加载器

时间:2016-07-12 19:08:57

标签: java tomcat classloader tomcat8 embedded-tomcat-8

我已将tomcat从版本7.0.34升级到版本8.0.33,从那时起我就一直面临着共享Web应用程序上下文和Junit上下文的问题。

我有一个带有singleton类的Web应用程序,它收集有关Web应用程序的统计数据。我也有Junit在嵌入式tomcat中运行Web应用程序。 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();

  }

当我使用Tomcat 7时,一切正常。但是自从我将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();

  }

我做错了什么?

1 个答案:

答案 0 :(得分:1)

您可以尝试使用StandardContext中的setDelegate方法来阻止网络应用程序类加载器重新加载Counter类,但这会以一种糟糕的方式影响安全性,所以我建议不要这样做。
通常的公开统计信息的方法是使用JMX(MBeans)。您可以通过调用值StandardContext的{​​{1}}中的setUseNaming方法启用此功能。

您可以注册这样的mbean(从here复制):

true

您可以检索这样的值(从here复制):

MBeanServer mBeanServer = ManagementFactory.getPlatformMBeanServer();
ObjectName beanPoolName = new ObjectName("com.zaxxer.hikari:type=Pool (" + poolName + ")");
mBeanServer.registerMBean(hikariPool, beanPoolName);

另请参阅this SO question,您可能需要阅读更多文档(根据我的经验,理解整个JMX并使其工作需要一段时间)。我没有尝试过与单元测试相结合,所以YMMV。