I'm trying to use a ContainerRequestFilter
to enforce some authentication on a Tomcat based Jersey application. I followed this document.
Problem : the filter is never triggered
The filter class :
@Provider
public class AuthFilter implements ContainerRequestFilter {
@Override
public void filter(ContainerRequestContext requestContext)
throws IOException {
// MY AUTHENTICATION CODE GOES HERE
}
The web.xml file :
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="debate-rest"
version="3.0">
<display-name>rest</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.spi.container.ContainerRequestFilters</param-name>
<param-value>com.hck.debate.rest.security.AuthFilter</param-value>
</init-param>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.hck.debate.rest.controller</param-value>
</init-param>
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
Okay, I didn't get that the jersey.config.server.provider.packages
init param needs to reference not only service classes (API endpoints) but ALL the classes including filters.
Now it works :
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.hck.debate.rest.controller;com.hck.debate.rest.security</param-value>
</init-param>
<init-param>
<param-name>com.sun.jersey.spi.container.ContainerRequestFilters</param-name>
<param-value>com.hck.debate.rest.security.AuthFilter</param-value>
</init-param>
I also had to add the @Provider JAX-RS annotation to my filters.
This makes the filter discoverable during JAX-RS scanning phase.
@Provider
public class MyAppFilter implements ContainerRequestFilter {
// filter logic
}
Some hints:
- Make sure you're using JAX-RS version 2.17.
Make sure you're using the right imports in your filter:
import javax.ws.rs.container.ContainerRequestContext;
import javax.ws.rs.container.ContainerRequestFilter;
Add the
@Provider
annotation
The minimum requirements to work filters with jersey:
- add @Provider annotation to filter class
- the namespace of filter class has to be included in 'jersey.config.server.provider.packages' init-param
Any other settings aren't required (e.g. 'com.sun.jersey.spi.container.ContainerRequestFilters' init-param or ResourceConfig)
I had the same problem for JAX-RS 2 , jersey and the below annotation fixed it
@PreMatching
We were missing the below call in our ResourceConfig implementation class:
register(CorrelationIdFilter.class);
Instead of using the @Provider
annotation (which did not work in my case), you can register your ContainerRequestFilter
manually with your JerseyServletFactory
:
JerseyServletFactory jerseyServletFactory = new JerseyServletFactory(config);
HttpServlet myServiceServlet = jerseyServletFactory.create(myResource);
// Register your ContainerRequestFilter like this
jerseyServletFactory.addRequestFilter(new MyFilter());
httpServer.register(myServiceServlet, "/api");
httpServer.start();
Instead of javax.ws.rs, i used com.sun.jersey and it worked
import com.sun.jersey.spi.container.ContainerRequestFilter
import com.sun.jersey.spi.container.ContainerRequest
Dropwizard users need to do this
environment.jersey().getResourceConfig()
.getContainerRequestFilters()
.add(filter);
If you were stuck like me, note that TomEE 1.7.X uses JAX-RS 1.1, which does not include ContainerRequestFilter.
For anybody having this problem in MULE ESB. Remember to register path with:
<jersey:resources doc:name="REST">
<component doc:name="rest component">
<spring-object bean="endpoit"/>
</component>
<jersey:package packageName="path @Provider-s"/>
</jersey:resources >
来源:https://stackoverflow.com/questions/17300218/jersey-containerrequestfilter-not-triggered