Hi,
I am trying to explore options to reduce my disk space during development and reuse the referencing of the external jar files from a common location.
I am using Eclipse and Weblogic application server and trying to deploy a small dynamic web application. I have created a 3rdParty project folder with a lib folder which will contain all the necessary jar files.
Question: Is there a possibility to refer my Web Application jar files to the 3rd Party project folder during development and deployment?
Applications Used:
Eclipse
Weblogic 11g running on Windows
Structure:
Project1:
3rdParty
|- lib
|- Struts-Core2.jar
|- xwork-core.jar etc....
Project2:
MyWebApp
|-src
|- Webcontent
|-
jsp
|- WEB-INF
|- lib ( No Jars included)
In eclipse I have tried to reference the project1 jar files to Project2 WEB-INF/lib files by using Deployment Assembly -> Project1(Source) ->WEB-INF/lib(Deploy Path in project2). However I am not sure if this is the correct way of doing. I am still getting some errors in my jsp file as it is unable to find struts-core2.jar which is present in the Project1 folder.
Can you please help?
Thanks in advance.