When selecting a new maven project from the Netbeans New Project Menu, there is the option to create a Web Application, or a Standalone Application. I'd like to create a Class Library for use with a Web Application.

How would you recommend I go about this. I see the new Servlet 3.0 Web Fragments need to be put into the META-INF folder and saved as web-fragment.xml. I'm not too sure where I'd create this directory if I'm packing a JAR and a WAR.

Some insight would be greatly appreciated.

link|improve this question

54% accept rate
I would suggest you to start from Maven POM and then import the project to Netbeans. – dma_k Jan 21 at 13:40
feedback

1 Answer

up vote 1 down vote accepted

You can create either Java application or Web Application. Just place the META-INF folder in the src/main/resources folder. and place web-fragment.xml directly under it. You can also place any images,css or javascript files in META-INF/resources folder. So when the application you are deploying this for will look in the WEB-INF/lib folder and load all the META-INF contents of the jar onto the classpath.

link|improve this answer
Thanks so much for your answer @Ravi. It works (it's reading the web-fragment.xml), but I'm getting a strange Premature End Of File error regarding my web.xml in the main project. I was hoping that you can please take a peek. stackoverflow.com/questions/8991571/… – Mark van Wyk Jan 24 at 17:52
You are welcome! – Ravi Jan 24 at 19:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.