How to start learning Java Enterprise Edition?

I am a 4th year student of CS. Since I will be joining the corporation next year, and I was programming in Java Standard Edition, I want to learn Java EE (latest version) and do some projects on it. Can someone lead me to the right path, probably tell me which entry-level level you will find in advanced level books. I came across a similar question, and in one of the answers there was a link to related books, but this link is inactive. Also, if someone knows good video tutorials, please list them.

Link to a similar question: Getting started with Java EE

And the one who asked this question has already developed our applications, but I'm starting.

+4
source share
2 answers

Depending on what you want to know. Desktop or web applications.

If I were you, I would start learning Eclipse RCP , create a small application with some views and editors, and then start reading Java EE6 with Glassfish3 . This is by far the best EE book I've found there, and it is available in PDF format.

Tame the GF3 server, create a database, write some business logic, draw an application, apply design patterns.

On the other hand, if you want to create a web application, just select the Java Web Framework , write a small application, then read the EE6 book. As you can see, in any case, you still need to read it.

0
source

If you are starting out, try the Head First Series.

Head first series

+2
source

Source: https://habr.com/ru/post/1498479/


All Articles