Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it necessary to learn Java EE before learning Spring Framework? [closed]

Tags:

java

I was recently hired as junior java developer and we are using Spring framework. I really like it, but the problem is: i still feel myself uncomfortable when it comes to some Spring features which i don't understand yet. I'm planning to learn Spring in depth in free time. Unfortunately i have no experience in using Java EE (actually i know nearly nothing about JavaEE. My JEE knowledges are all theoretical)...So my question is: Is it mandatory to learn JEE if i want to stay with Spring in the future? Thanks.

like image 368
Mukhamedali Zhadigerov Avatar asked Mar 30 '18 05:03

Mukhamedali Zhadigerov


2 Answers

Java EE is nothing more than an extension of Java SE meaning that it's just a bunch of extra features and packages added onto Java SE. Features such as concurrency frameworks, serverlets, websockets and a whole lot more. So in other words, no you don't need to get into all of Java EE to know Spring.

like image 150
Plee Avatar answered Nov 14 '22 22:11

Plee


It will be always helpful if you learn some of basics about JEE. I think you should atleast have basic idea around servlets and jsp if you are planning to utilize spring MVC. Once you get hold of these basics, spring MVC plays around the same concept but with different approach. Spring has lot more than jee actually.

like image 25
Atul Avatar answered Nov 14 '22 21:11

Atul