Following the getting started guide on the Jersey website:
I executed the following build command:
$ mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-grizzly2 \
-DarchetypeGroupId=org.glassfish.jersey.archetypes -DinteractiveMode=false \
-DgroupId=com.example -DartifactId=simple-service -Dpackage=com.example \
-DarchetypeVersion=2.2
I then followed the tutorial on
https://jersey.java.net/documentation/latest/filters-and-interceptors.html#d0e6783
to add a custom ContainerResponseFilter:
@NameBinding
@Retention(RetentionPolicy.RUNTIME)
static @interface CORSBinding {}
@Provider
@Priority(Priorities.HEADER_DECORATOR)
@CORSBinding
static class CrossDomainFilter implements ContainerResponseFilter {
@Override
public void filter(ContainerRequestContext creq, ContainerResponseContext cres) {
Logger.getLogger("com.example").log( Level.INFO, "before: {0}", cres.getHeaders());
cres.getHeaders().add("Access-Control-Allow-Origin", "*");
cres.getHeaders().add("Access-Control-Allow-Headers", "origin, content-type, accept, authorization");
cres.getHeaders().add("Access-Control-Allow-Credentials", "true");
cres.getHeaders().add("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS, HEAD");
cres.getHeaders().add("Access-Control-Max-Age", "1209600");
Logger.getLogger("com.example").log( Level.INFO, "after: {0}", cres.getHeaders());
}
}
@Provider
static class MyResponseFilter implements ContainerResponseFilter {
@Override
public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext) throws IOException {
System.out.println("MyResponseFilter.postFilter() enter");
responseContext.setEntity(
responseContext.getEntity() + ":" + getClass().getSimpleName(), null, MediaType.TEXT_PLAIN_TYPE);
System.out.println("MyResponseFilter.postFilter() exit");
}
}
...
@GET
@Produces(MediaType.TEXT_PLAIN)
@CORSBinding
public String helloWorld() {
return "hello world";
}
I tried to register this filter with Named Binding and with Dynamic Binding, nothing works.
To easily reproduce, I also tried an example from the official resources:
https://github.com/jersey/jersey/tree/2.2/examples/exception-mapping
The same problem: the custom filters do not get executed.
Is this a Grizzly problem?
Adding the following code in web.xml using Tomcat container is what worked for me:
My thanks goes to:
http://blog.dejavu.sk/2013/11/19/registering-resources-and-providers-in-jersey-2/
As it turns out you have to manually register the custom classes - as in:
Full example: