views:

68

answers:

3

Is it possible put these three framework Spring, Struts 2.0 and Hibernate in single application and how without using JPA?

A: 

With the information you provide, use the Hibernate JPA implementation and you are done.

Guido
+1  A: 

Struts2, Spring and Hibernate ARE frameworks, so your question makes little sense. If you mean "can I use Struts2, Spring and Hibernate to build my web application?", the answer is yes, in principle - they play together all right.

leonbloy
@leonbloy yes you are correct. I have rephrase the question for the same.
Kamahire
+1  A: 

Check the official documentation of springsource to know how it works and how to implement them.

Spring Official documentation Look at Current Releases -> Reference manual, of your version. Everything is explained.

HowHigH