Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring vs Java EE 7 [closed]

Now I am reading "Begining Java EE 7". And I was wondered that Java EE 7 is a good stack of technologies, it includes CDI, bean validation, JSF for web tier and other specifications.

So I got a question:
Why should I study Spring framework if Java EE 7 exists and covers all capabilities which Spring implements?

like image 776
Korobko Alex Avatar asked Sep 29 '13 15:09

Korobko Alex


People also ask

Is Java EE still relevant 2020?

Almost 4 out of 10 people use the latest version of Java EE while Java EE 7 still remains quite popular.

Is Spring Java EE compliant?

Spring on the other hand, is a framework doing lots of the stuff on the Java EE specifications, but in its own form. They don't follow Java EE specifications and APIs for that. But they do include a Web Framework, transaction management, security and several other solutions Java EE offers.

Is Spring framework still relevant in 2022?

So… Is Spring Boot in demand in 2022? Short answer: yes, it is, and it will most likely stay in demand in the years to come. Stick around for the long answer!


2 Answers

I will share little bit of what I know about using Spring. You are right by saying that Java EE 7 has all the technologies to help solve the problems.

Well Spring just enhances these capabilities and makes life more easier for a developer.

As an example when you use Spring MVC framework you can use Spring UI tags to create your JSP and those tags in turn can help you map the values directly to your controller. By controller I mean the Java class which is invoked when you do form submit. It also helps you to validate the form data.

This can be achieved using the Servlet technology also but Spring lets you focus on business logic and it takes care of these.

In my experience as a developer its good to know and understand Java EE 7 but frameworks like Spring utilize some of the best practices and patterns to make life easier for developers.

Would like to hear the opinions from others as well.

Hope this helps.

like image 71
Ankur Avatar answered Oct 28 '22 02:10

Ankur


I think that one simply should know both of them. Spring has a huge community and is used widely, but Java EE is now going forward too, using many technologies that are in Spring in its latest versions.

However, it is incorrect to say that Java EE covers all the fields that Spring does. In my opinion Spring still has something that could make the difference, if you work in particular domains, such as mobile (Spring mobile), social (Spring social), navigation flows management (Spring Webflow) and others.

like image 19
umanganiello Avatar answered Oct 28 '22 00:10

umanganiello