LuckyLuke
LuckyLuke

Reputation: 49077

How to structure a maven project in Eclipse

If I want to have a project with both EJB/JPA sourcecode and JSF in the same project how do I set up a project like that in Eclipse? I am using Maven. Is it correct on the image below? What is the difference between source folder and folder in Eclipse, and why do I have structure twice in the project below?

GO TO https://i.sstatic.net/RCmI8.png for full size picture. enter image description here

Upvotes: 1

Views: 418

Answers (1)

matt b
matt b

Reputation: 139931

Yes, the structure you have is a typical folder layout for a Maven webapp project. Eclipse highlights the folders containing source code that will be compiled / placed on the classpath, but also shows you the regular folders in the filesystem.

Upvotes: 2

Related Questions