views:

327

answers:

4

Can anybody suggest some good books for starting J2EE? I have done Core and Advanced Java ( up to Swing).

+3  A: 

Have a look at The J2EE Tutorial.

adatapost
+3  A: 

If your starting with J2EE as a beginner these books will be helpful

Head First Servlets and JSP

Java Server Programming Black Book

Good luck !

YetAnotherCoder
+1 for the mentioning Head First books. One of the best series out there.
Ascalonian
+1 Head First Servlets and JSP is an excellent book.
Andrei Ciobanu
+1  A: 

First I want to point out that both The Java EE 5 Tutorial and The Java EE 6 Tutorial, Volume I are both available for free online. This is the best place to start and the examples work with the GlassFish J2EE container, which has free versions available online (you can get it bundled with NetBeans).

Second, although it is a superb book, Head First Servlets and JSP really only covers the Web tier in any depth at all. It's definitely worth reading if you want to learn servlets and JSP in depth, but there's a lot more to J2EE than just these components. (See the table of contents on the Java EE 5 Tutorial link above to see how much more.)

Bill the Lizard
A: 

I would also suggest Real World Java EE Pattern -- Rethinking Best Practices. Lots of sensible advice in it and a clear coverage of old school J2EE vs. modern JEE, for instance outdated best practices.

ewernli