我有一个 Web 应用程序配置为使用 Jersey 和 Spring 来提供后端服务和依赖注入。
我无法确定将 Jersey 2.3 提供的 LoggingFilter 添加到我的应用程序中的最佳方式。如果可能的话,我想在 web.xml 文件之外作为 init-param 这样做,而是在 Java 配置文件中这样做。
我知道 ResourceConfig 类,它具有 register(Class clazz) 方法,但不确定处理它的最佳方法。
使用 Jersey 2.3/Spring 在 web.xml 之外注册过滤器的最有效方法是什么?
我的 web.xml 在这里:
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
prototype.config.ApplicationConfig
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>prototype.resources</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
</web-app>