I've tried the approach here without luck: As the comments in the answer there mentions the HttpServletRequest
is just null
.
This is my filter:
public void myFilter(ContainerRequestContext request) throws IOException
{
// I don't see a way to get the IP address from the ContainerRequestContext
}
If I try to use @Context HttpServletRequest httpServletRequest
, as the answer in the other question suggests, I just get a NullPointerException
.
Another similar question: How to get source address / ip from inside ContainerResponseFilter