public class ResourceDebuggingFilterFactory extends java.lang.Object implements ResourceFilterFactory
ResourceFilterFactory provides tracking of resource
matching. Every successful match is logged and developers can easily discover
which resource / method was matched and see how the request path is being
consumed.
When an application is deployed as a Servlet or Filter this Jersey resource
filter can be registered using the following initialization parameter:
<init-param>
<param-name>com.sun.jersey.spi.container.ResourceFilters</param-name>
<param-value>com.sun.jersey.api.container.filter.ResourceDebuggingFilterFactory</param-value>
</init-param>
com.sun.jersey.api.container.filter| Constructor and Description |
|---|
ResourceDebuggingFilterFactory(HttpContext hc) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<ResourceFilter> |
create(AbstractMethod am)
Create a list of
ResourceFilter instance given a method
of the abstract resource model. |
public ResourceDebuggingFilterFactory(@Context HttpContext hc)
public java.util.List<ResourceFilter> create(AbstractMethod am)
ResourceFilterFactoryResourceFilter instance given a method
of the abstract resource model.
When applying the list of resource filters to a request each resource filter is applied, in order, from the first to last entry in the list. When applying the list of resource filters to a response each resource filter is applied, in reverse order, from the last to first entry in the list.
create in interface ResourceFilterFactoryam - the abstract method. This may be an instance
of the following: AbstractResourceMethod,
AbstractSubResourceMethod or AbstractSubResourceLocator.Copyright © 2016 Oracle Corporation. All Rights Reserved.