在Servlet规范3.0下传递servlet配置参数

时间:2012-10-16 03:43:39

标签: java java-ee tomcat servlet-filters servlet-3.0

使用注释而不是web.xml文件时,如何处理通常可以从ServletConfig对象读取的servlet init / config参数?即

@WebFilter("/sample")
public class MyServlet {

    public void init() throws ServletException {
        String value = getServletConfig().getInitParameter("key");
        // or
        value = getServletContext().getInitParameter("key");
    }
}

或在过滤器的情况下:

public class MyFilter implements Filter {

    public void init (FilterConfig filterConfig) throws ServletException {
        filterConfig.getInitParameter("key");
    }

}

更新:我知道您可以在注释中硬编码配置参数,但我不想将配置设置硬编码到代码中。例如,无法在两个应用程序之间共享此servlet:

@WebFilter("/sample", initParams = {@InitParam(name = "database_host", value = "blah.com")})
public class MyServlet {

    public void init() throws ServletException {
        String value = getServletConfig().getInitParameter("database_host");
    }
}

2 个答案:

答案 0 :(得分:1)

 @WebServlet(name = "TestServlet", urlPatterns = {"/test"},
 initParams = {@WebInitParam(name="key", value="value")})

 public class TestServlet extends HttpServlet {

   protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {        
      String key= getInitParameter("key");
   }
 }

编辑:

要回答您更新的问题,您有两种选择:

  1. 使用基于web.xml的init params

  2. 的旧模式
  3. 只需在另一个项目中创建servlet的虚拟扩展(子类)并分配新的init参数。

答案 1 :(得分:0)

我认为这就是你的意思

@Servlet(urlMappings={"/MyApp"}, initParams ={@InitParam(name="lang", value="english")})
public class MyServlet {

您可以参考此An Introduction To Servlet 3.0