I have a folder that has the spring libraries. I have a separate folder that contains the java code that contains the code for a simple "HelloSpring" application. In order to compile my HelloSpring application, I need to refer to the Spring libraries present in the separate folder. Is it possible to refer to this external folder during the compilation process such that when I type in javac HelloSpring.java
, it properly resolves all the libraries being referred to? Is there a way to setup a symbolic link so that the java compiler can look into that to resolve the dependencies.
Thanks