I am deploying instance of tomcat 8 and trying to find equivalent of virtualClasspath.
Below is the snippet of configuration descriptor I had in Tomcat 7,
<Context path="/path">
<Loader className="org.apache.catalina.loader.VirtualWebappLoader" virtualClasspath="/home/kedar/third_party_jars/*.jar" />
</Context>
How can I specify the similar thing in tomcat 8. To be more specific, how to include multiple third party jars(as above) under classpath in the configuration descriptor of tomcat 8?
We can include each jar one by one in the following way, but I am looking some regex kind of way to include multiple jars.
<Resources className="org.apache.catalina.webresources.StandardRoot">
<PostResources className="org.apache.catalina.webresources.JarResourceSet"
base="/home/kedar//third_party_lib/xyz.jar"
internalPath="/"
webAppMount="/WEB-INF/classes" />
</Resouces>
Thanks in advance