vote up 1 vote down star

This question is about eclipse development, I am trying to create a web application in Eclipse, the problem is that I don't get the the dependencies jars to the deployed archive.

I've created a new dynamic web project and linked it to another java project. The java project references a few 3rd party jars (e.g. Spring jars) but for some reasons when publishing the web project I get only the java project jar in the lib dir of the war, without the java project dependencies (e.g.Spring).

In other words, I have project A (web project) that depends on project B (Java Project), project B depends on Spring jars. When I publish the web project as a war to jboss, only project B is packaged into the jar (no spring jars)

I know I can do it with ant, I even have such build.xml to build the whole app, but I thought eclipse can also perform the packaging task for me.

I added the Java project to the Java EE module dependencies in the web project.

Should I use the export option in the java project build path properties? should I add the dependencies of the java project to the web project as well?

What am I doing wrong?

Edit: I am using Eclipse 3.5.1

flag

64% accept rate
Also consider this question: stackoverflow.com/questions/1691553/…. – JG Nov 7 at 15:03
I've seen this question, adding the dependencies in the Java EE module dependencies just doesn't solve my problem – LiorH Nov 7 at 15:06

4 Answers

vote up 0 vote down

Or you could use Maven for dependency management, in case your project is a bigger one.

link|flag
vote up 1 vote down

I added the Java project to the Java EE module dependencies in the web project.

If the purpose is to take the dependencies (read: JAR files/projects/etc) of the other project into the runtime classpath of the current project, then only that way doesn't work. You need to configure the other project to export its dependencies. It's done by Order and Export tab in build path properties. Hope this helps.

link|flag
vote up 0 vote down

If I understand you correctly the problem is that if you use project A which in turn depends on project B you do not get the artifacts from project B but only A.

The issue is that your project must list ALL the things it needs in Properties -> Java EE module dependencies, which is a separate mechanism from the usual project exports. You will probably need to do some experimentation.

link|flag
vote up 0 vote down

You should be packaging your web app into a WAR file prior to deploying it. There must be a way to tell Eclipse which JAR files you'd like it to put in the WEB-INF/lib directory. If not, write an Ant build.xml that does it for you.

You should not have to modify any classpath variables in either your environment or the app server. The right way to do it is to create a proper WAR file.

UPDATE: I re-read your question:

but for some reasons when publishing the web project I get only the java project jar in the lib dir of JBoss, without its dependencies jar (e.g.Spring).

What does this mean? You should not be putting anything in the JBOSS /lib dir. The whole point of a WAR file is that it's a self-containing artifact that carries along all its dependencies. If you're trying to write stuff to the JBOSS /lib directory, you're doing it wrong.

The WAR file needs to go into the domain that you set up. No need to alter the app server.

link|flag
I have an ant script that does it well, the problem is development time, I want to package and publish it from eclipse (and then of course debug the application) – LiorH Nov 7 at 15:08
Eclipse should be able to do it without Ant. If it can't, get a real IDE and download IntelliJ. It manages all this stuff beautifully. – duffymo Nov 7 at 15:13
you are right in your update, I meant the lib dir of the war file (under WEB-INF) and not the JBoss lib dir of course. I fixed the question description, thanks. – LiorH Nov 7 at 15:39
@LiorH - very good, thanks for the explanation. I have to confess I'm mystified. You say that your Ant script "does it well", yet you still have a problem. If I don't understand exactly what's going on, either you'll have to hope for a smarter person to tease out the answer or add more detail to your question. I honestly don't know what's going on. – duffymo Nov 7 at 15:49
revised to your suggestion :-) – LiorH Nov 7 at 16:36

Your Answer

Get an OpenID
or

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