i want to create a Maven project in eclipse. I have install the m2eclipse plugin in my eclipse, i have create a new Maven Project, now i'm stuck with archetype, i want to create a project with Struts 2, Hibernate 3, MySql and JUnit
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You shouldn't expect to find an archetype for all possible combinations, they are endless and I generally prefer to shape my own project myself, starting with basic archetypes (you can bootstrap a project using some archetypes, just don't expect to always find an ultimate generic solution). In your case, you could either use the Struts 2 Blank Archetype for the presentation part:
And then the JPA archetype (hibernate based) for the domain part:
Or use the AppFuse QuickStart archetype:
And remove all the appfuse specifc stuff (seems to be more work than going the other way i.e. adding stuff). Or simply create a blank webapp and add the required stuff yourself. Often, this is the best thing to do as already hinted. Resources |
||||
|
|