Hello,

I was wondering how I can receive session start events in a container manager bean. I know I can create a class that implements
Code:
javax.servlet.http.HttpSessionListener
and add that class to my web.xml:
Code:
<listener><listener-class>pb.session.Init</listener-class></listener>
But is there a "Spring" way to do this? Then I can use container features on my Init class as well.

Many thanks,
James