Arvind
Arvind

Reputation: 1237

JSF 2.0 project Structure

We are creating a new project using jsf2.0, richfaces 4.0, jjdk 6 and tomcat 7.0 I want to know the standard way of creating project. I mean folder structure. Any sample application or book or link will be a great help to me.

Upvotes: 0

Views: 1093

Answers (2)

d1e
d1e

Reputation: 6442

I participated once in a project, which had Spring 3.5, JSF 1.2 and ICEFaces 1.8, was running on JDK6 and everything was deployed to Tomcat 6.0 - similar situation to yours. We used Apache Maven as a project management tool.

Very flexible and comfortable. You could also consider using ICEFaces instead of RichFaces.

Upvotes: 0

Andreas Dolk
Andreas Dolk

Reputation: 114757

Maven uses a best practice approach for project folders. Even when you do not plan to build with maven, have a look at their structures:

Upvotes: 2

Related Questions