I have a java project. I'm looking to make it read the jars from the disk it's running on-- from the directory I defined on the .properties
file. So by this, I no longer will include those jars in the WEB-INF directory (its a web application) but read it from my local disk when i'm running it. When I .war it up, it won't include those jars in the pack, but reserve a link to those resources. when deployed on the server, it'll this time get those jars into its path from the disk location on the server by using that link/reference.
How to do this?
I'm developing on Eclipse Neon. I'm not using maven or any other build tool.
//---------------------
EDIT:
Eg. I'm looking to make the application read the database jars from the database's installation directory on the server.