I have a RESTEasy web server with lot of methods. I want implement logback to track all requests and responses, but I don't want add log.info()
to every methods.
Maybe there's way to catch requests and responses in one place and log it. Maybe something like a filter on HTTP request process chain on RESTEasy.
@Path("/rest")
@Produces("application/json")
public class CounterRestService {
//Don't want use log in controler every method to track requests and responces
static final Logger log = LoggerFactory.getLogger(CounterRestService.class);
@POST
@Path("/create")
public CounterResponce create(@QueryParam("name") String name) {
log.info("create "+name)
try {
CounterService.getInstance().put(name);
log.info("responce data"); // <- :((
return new CounterResponce();
} catch (Exception e){
log.info("responce error data"); // <- :((
return new CounterResponce("error", e.getMessage());
}
}
@POST
@Path("/insert")
public CounterResponce create(Counter counter) {
try {
CounterService.getInstance().put(counter);
return new CounterResponce();
} catch (Exception e){
return new CounterResponce("error", e.getMessage());
}
}
...
}
You can create filters and easily bind them to the endpoints you need to log, keeping your endpoints lean and focused on the business logic.
To bind filters to your REST endpoints, JAX-RS provides the meta-annotation @NameBinding
and it can be used as following:
@NameBinding
@Retention(RUNTIME)
@Target({TYPE, METHOD})
public @interface Logged { }
The @Logged
annotation will be used to decorate a filter class, which implements ContainerRequestFilter
, allowing you to handle the request:
@Logged
@Provider
public class RequestLoggingFilter implements ContainerRequestFilter {
@Override
public void filter(ContainerRequestContext requestContext) throws IOException {
// Use the ContainerRequestContext to extract information from the HTTP request
// Information such as the URI, headers and HTTP entity are available
}
}
The @Provider
annotation marks an implementation of an extension interface that should be discoverable by JAX-RS runtime during a provider scanning phase.
The ContainerRequestContext
helps you to extract information from the HTTP request.
Here are methods from the ContainerRequestContext
API to get information from the HTTP request that can be useful for your logs:
ContainerRequestContext#getMethod()
: Get the HTTP method from the request.ContainerRequestContext#getUriInfo()
: Get URI information from the HTTP request.ContainerRequestContext#getHeaders()
: Get the headers from the HTTP request.ContainerRequestContext#getMediaType()
: Get the media type of the entity.ContainerRequestContext#getEntityStream()
: Get the entity input stream.For logging the response, consider implementing a ContainerResponseFilter
:
@Logged
@Provider
public class ResponseLoggingFilter implements ContainerResponseFilter {
@Override
public void filter(ContainerRequestContext requestContext,
ContainerResponseContext responseContext) throws IOException {
// Use the ContainerRequestContext to extract information from the HTTP request
// Use the ContainerResponseContext to extract information from the HTTP response
}
}
The ContainerResponseContext
helps you to extract information from the HTTP response.
Here are some methods from the ContainerResponseContext
API to get information from the HTTP response that can be useful for your logs:
ContainerResponseContext#getStatus()
: Get the status code from the HTTP response.ContainerResponseContext#getHeaders()
: Get the headers from the HTTP response.ContainerResponseContext#getEntityStream()
: Get the entity output stream.To bind the filter to your endpoints methods or classes, annotate them with the @Logged
annotation defined above. For the methods and/or classes which are annotated, the filters will be executed:
@Path("/")
public class MyEndpoint {
@GET
@Path("{id}")
@Produces("application/json")
public Response myMethod(@PathParam("id") Long id) {
// This method is not annotated with @Logged
// The logging filters won't be executed when invoking this method
...
}
@DELETE
@Logged
@Path("{id}")
@Produces("application/json")
public Response myLoggedMethod(@PathParam("id") Long id) {
// This method is annotated with @Logged
// The request logging filter will be executed before invoking this method
// The response logging filter will be executed before invoking this method
...
}
}
In the example above, the logging filters will be executed only for myLoggedMethod(Long)
because it's annotated with @Logged
.
Besides the methods available in ContainerRequestContext
and ContainerResponseFilter
interfaces, you can inject ResourceInfo
in your filters using @Context
:
@Context
ResourceInfo resourceInfo;
It can be used to get the Method
and the Class
which match with the requested URL:
Class<?> resourceClass = resourceInfo.getResourceClass();
Method resourceMethod = resourceInfo.getResourceMethod();
HttpServletRequest
and HttpServletResponse
are also available for injection:
@Context
HttpServletRequest httpServletRequest;
@Context
HttpServletResponse httpServletResponse;
Refer to this answer for the types that can be injected with @Context
.
Try Interceptors(not just vanilla EJB interceptors you can use CDI with that).
They are there for implementing Cross Cutting Concerns(aspects).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With