java - virtualClasspath equivalent in tomcat 8 -
i deploying instance of tomcat 8 , trying find equivalent of virtualclasspath.
below snippet of configuration descriptor had in tomcat 7,
<context path="/path"> <loader classname="org.apache.catalina.loader.virtualwebapploader" virtualclasspath="/home/kedar/third_party_jars/*.jar" /> </context>
how can specify similar thing in tomcat 8. more specific, how include multiple third party jars(as above) under classpath in configuration descriptor of tomcat 8?
we can include each jar 1 one in following way, looking regex kind of way 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
Comments
Post a Comment