Reputation: 23
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?
Upvotes: 1
Views: 1668
Reputation: 597026
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.
Upvotes: 4