Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the prerequisite when try to learn the spring or struts framework?

I think these technologies are really prior to java industry

like image 379
LockOn Avatar asked May 31 '10 11:05

LockOn


People also ask

What are the prerequisites for Spring Framework?

There are no specific prerequisites to learn Spring Framework. However, it would be beneficial to have a basic understanding of HTML, CSS, or any programming language.

What should I learn before learning Spring Framework?

You can write well optimised JSP code using Spring framework, but it needs JSP knowledge. So you should learn JSP, Servlet and JDBC before Spring framework.

Is Java a prerequisite for Spring boot?

System RequirementsSpring Boot 2.7. 4 requires Java 8 and is compatible up to and including Java 19.

Which Spring Framework should I learn first?

There are several modules like Spring Core, Spring MVC, Spring Security, Spring Data, and Spring Boot and you need to decide what you want to learn. Since most of the developers want to learn Spring MVC, I suggest you first start with Spring Core and then follow the Spring MVC part.


2 Answers

A good knowledge of Core Java, Servlets and JSP is pretty much more than enough you need..

like image 118
Sid Avatar answered Oct 07 '22 01:10

Sid


I'm not sure about struts, but for Spring, it helps to know about dependency injection and inversion of control, XML, and JavaBeans.

If I had to recommend a book, it would be Spring in Action

UPDATE

It's been pointed out to me that Spring in Action is about Spring 2.0, which it is. Spring 2.0 is almost four years old. Spring's first-party documentation makes wonderful reading. Check out the reference documentation for great prose and the Javadocs if you need more in-depth information.

like image 43
jasonmp85 Avatar answered Oct 07 '22 03:10

jasonmp85