I'm building a simple web application that handles a simple database using struts and hibernate (so far the application works just fine with these two frameworks), Now I want to add Spring to this application. I have some basic knowledge of how Spring works, but I don't know to which part I need to add Spring's capabilities.
Application's overall structure.
Hibernate as the persistence layer. Struts manages the overall control of the business objects (using form beans and action classes). and for the separation of these two layers I've used a class that manipulates the business logic (like DAO but not exactly).
I was thinking of adding Spring to this business logic class.
Expecting some expertise ideas...
Thanks.