Search code examples
javatomcatservletsservlet-listeners

Tomcat: how to create a HttpRequestListener, similar to HttpSessionListener?


I have created a HttpSessionListener on my webapp, and its works fine. How can i create a similar request listener, called when a user make a request on a session? It is possible?


Solution

  • There is ServletRequestListener. It is notified whenever a request is created and destroyed.

    Note that "make are request on a session" does not make sense. The servlet container associates a session with a request based on the JSESSIONID passed with the request.