Explore the beginner's roadmap in java ee

I am new to java ee, I learned basic Java, servlets, jsp. Can someone give me some suggestion (some books, forums, etc.) on how to promote my skills in java ee?

Thank you very much in advance.

+4
source share
3 answers

A good place to start is the Sun Java 6 EE Tutorial on the Sun website.

+1
source

I would recommend server-side Java programming . This is not a Java EE book per se, but it explains what a Java server should do and how to do it with a good code example. This will give you reason to understand what Java EE is trying to implement, and why everything is as it is.

In the same vein, I would recommend Expert One-on-One J2EE Development without EJB . This book was written by the founder of the Spring project and gives an idea of ​​the problems with Java EE that Spring is trying to solve. Please note that this was written before Spring was open source, so more β€œthis is how the server structure works, not Java EE,” not β€œhow to use the Spring book.” Even if you use direct Java EE, it helps to understand what problems you encountered (with J2EE) or with the motives of Java EE 5 (based on Spring and the Hibernate philosophy).

I would not recommend these specifications from Sun. They are solid, technical, and better used as reference.

+1
source

To be an effective J2EE developer, you will have to have several frameworks under your belt. Start cropping on Spring, JSF, Hibernate, etc.

See my answer to this question for more details.

Spring is an excellent first choice of structure, for reasons that may not appear until you use it in a large project. But the best tutorial I know to learn is Manning Spring In Action .

0
source

All Articles