Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two dynamic web projects and need to reference one in the deployment assembly of the other. The problem is that it adds a .war file to WEB-INF/lib instead of a .jar which causes my tomcat server to have class not found errors.

Is there a simple solution?

share|improve this question

1 Answer

Create a Java Project and include it into both of the Dynamic web app projects that you currently have. Move the code that you want to share from web app project A with web app project B into the Java Project.

share|improve this answer
Not sure what you mean here. There is no such thing as a java class library project. – some_developer Jul 2 '11 at 16:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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