Reputation: 30097
When I am designing normal Java project in Eclipse, I can add predefined libraries to it's Build Path. Can I do the same way when putting jars into WEB-INF/lib folder of Web project? I.e. can I ask Eclipse to put some predefined library jars there?
Upvotes: 0
Views: 1494
Reputation: 1
This is what I did. I copied the jar files into my WEB-INF/lib folder. Then, I added these jars into my build path using: Properties -> Java Build Path -> Add Jars -> Select the jars from the WEB-INF/lib folder.
Upvotes: 0
Reputation: 11607
Just copy / import a Jar there; it will be added to the build path automatically. You will find it in the package explorer within the Web App Libraries
(or in the build path in the project properties). The project has to have the Dynamic Web App nature.
Upvotes: 1