A good old HttpSessionAttributeListener example

When working with a session you can add attributes, remove attributes and change attributes. You can have your application listen to those events by using a HttpSessionAttributeListener. See https://github.com/manorrock/jakartaee-examples/tree/master/servlet/httpSessionAttributeListener for an example.

Posted September 6th, 2018

Up