tags:

views:

542

answers:

2

Somebody knows an example of this? an application made with JSF 2.0 and EJB 3? directory structure, etc, those kind of things, I’m trying to approach the best way to create a Java EE app using those technologies.

+2  A: 

You should have a look at the Glassfish Samples or the Java Petstore application that are developed in compliance to the blueprints:

Glassfish Samples: https://glassfish-samples.dev.java.net/
Java Pet Store: https://blueprints.dev.java.net/petstore/
BluePrints: http://java.sun.com/blueprints/code/projectconventions.html

codescape
+1  A: 

I suggest to check the Java EE 6 samples (the JSF 2.0, the Weld and EJB 3.1 samples) and the Chapter 2. Using the Tutorial Examples of the The Java EE 6 Tutorial.

Pascal Thivent