I want an example of session facade using spring which handles transactions.
I have a Hibernate persistance layer for the application. When I call the DAO through the session facade, how do I configure so that the transactions are controlled by the facade and not by Hibernate?

My application has a Struts 2.0 MVC front end and spring as the business tier.