The Vancouver Java Users Group Message Board › freshening up
| RT | |
|
|
I want to brush up a little on J2EE skills as working for a small company you tend to wear various hats and development sometimes takes a back seat over other issues. Anyone can recommend a book or site that provides J2EE application development using Eclipse, Ant and XML handling? Hibernate, struts, spring are also nice to know as well.
|
| Jon Ferguson | |
|
Hi There,
You might have a look at the JavaRange forums: http://www.coderanch.... J2EE has changed a lot as a result (IMHO) of frameworks like SPRING (with dependency injection and heavy use of annotations), and Hibernate. The main driver is to simplify development. EJB 3 and JPA marked a divergence in the EJB specification. Entities are in and Entity Beans are *out*? (well they don't say that but are putting all effort into session beans and message driven beans - Entity Beans are a bit out in the cold!). JPA follows hard on the heals of Hibernate and other such frameworks. JSF is of significance for UI components - though presents an impedance mismatch with EJBs - you might want to check out the enhancements JBoss added with SEAM (http://www.seamframew... I did the SCEA last year and found: "Mastering Enterprise JavaBeans 3.0" by Sriganesh, Brose and Silverman very helpful. Also, patterns are really important in JEE development so have a look at "Core J2EE Patterns: Best Practices and Design Strategies" by Alur, Crupi & Malks. Get the latest edition though (believe its still 2nd) as thinking has changed somewhat. Eclipse: just start using it and possibly read the online docs. Ant - same - check the sites' docs its really enough. XML handling: in the JEE world look at the JAX-.. specs. (http://java.sun.com/j... Hope this helps, Jon Oh, they've now dropped the 2 so its JEE. |