I am very confused with different java frameworks. I want to create a java server project to offer some Restful web-service, but I really dont know which framework I should choose. What is the difference between JSF, EJB, Hibernate and Spring? Please help me understand them more.
|
These are frameworks for different layers.
|
|||||||
|
You have to decide between JEE5/6 and spring. Take the red or the blue pill don't use both. |
|||
|
However, if you want to do REST, then the most important standard for you is JAX-RS. You can use it either within the Spring framework or with EJBs. For persistence, you could use Hibernate, or the JPA implementation of an EJB container such as Glassfish |
||||
|
|
|
EJB is an Enterprise Java Bean -- see link for description, but basically its the 'default' java way of writing an enterprise application. Hibernate is an ORM Framework; a way to map the Objects/Classes in your application to database tables. It is related to how you persist your data to a database. Spring is an IoC/Dependency Injection container that provides many useful and well tested abstractions to make your life easier. Spring is sort of like its own application framework. JSF is Java Server Faces, a view technology for java web applications. You would use either EJB OR Spring. You could use Hibernate as your persistence implementation, if you wanted, with either; you do not need to do this. For RESTFul webservices, you don't really need JSF. People are very happy with Spring - I recommend using that... |
||||
|
|
|
Im trying many java Frameworks in these days (Struts, GWT, JSF, and so on). I suggest to try (at least) to implement some web application to understand the real difference between each framework. Else, it's really hard (in my opinion). Good luck :) |
|||
|
|