Jetty:动态删除已注册的servlet

问题描述 投票:4回答:1

我使用WebAppContext创建并启动了jetty服务器。我还可以使用addServlet方法将servlet添加到WebAppContext。但是我想动态删除这个servlet。我怎样才能做到这一点 ? WebAppContext中未提供类似removeServlet()的内容。

jetty embedded-jetty
1个回答
21
投票

你需要手动完成(可能应该有一个方便的方法,但没有)

在Jetty 7中它会像(未经测试):

public void removeServlets(WebAppContext webAppContext, Class<?> servlet)
{
   ServletHandler handler = webAppContext.getServletHandler();

   /* A list of all the servlets that don't implement the class 'servlet',
      (i.e. They should be kept in the context */
   List<ServletHolder> servlets = new ArrayList<ServletHolder>();

   /* The names all the servlets that we remove so we can drop the mappings too */
   Set<String> names = new HashSet<String>();

   for( ServletHolder holder : handler.getServlets() )
   {
      /* If it is the class we want to remove, then just keep track of its name */
      if(servlet.isInstance(holder.getServlet()))
      {
          names.add(holder.getName());
      }
      else /* We keep it */
      {
          servlets.add(holder);
      }
   }

   List<ServletMapping> mappings = new ArrayList<ServletMapping>();

   for( ServletMapping mapping : handler.getServletMappings() )
   {
      /* Only keep the mappings that didn't point to one of the servlets we removed */
      if(!names.contains(mapping.getServletName()))
      {
          mappings.add(mapping);
      }
   }

   /* Set the new configuration for the mappings and the servlets */
   handler.setServletMappings( mappings.toArray(new ServletMapping[0]) );
   handler.setServlets( servlets.toArray(new ServletHolder[0]) );

}
© www.soinside.com 2019 - 2024. All rights reserved.