Kaustubh G Sharma wrote:I need to learn spring and EJB ASAP ... I know Struts and Hibernate but not have deep knowledge of it.. Does Spring required Struts to learn before it??? I need some good simple and easy languages book from which I can learn both the technologies..plus if you know any online stuff please paste that also...
Thanks
Kaustubh
That sounds like a great Google search. ;)
Struts is a web framework. The Spring framework is not a web framework, so completely different. SpringSource does have Spring MVC as a module that is part of Spring that can be used in the web layer and is similar to Struts in that is follows the MVC2
pattern with a Front Controller
Servlet called the DispatcherServlet and Controller classes that are similar but POJO based like Struts Action class. So,
you should understand the architecture.
Mark