When Hibernate is used with Spring, making the DAOs extend HibernateDaoSupport provides the getHibernateTemplate() which is used to obtain the session.
When using a Hibernate Event Listener, I am extending the SaveOrUpdateEventListener and so cannot use the getHibernateTemplate() method to obtain Session.
Is there any way to obtain the session via Spring ?