↧
Answer by Philipp Reichart for Tomcat: possible to exclude jars during app...
You check/filter what web apps load using a custom loader extending from org.apache.catalina.loader.WebappClassLoader as mentioned in the Tomcat documentation.Check out Tomcat's implementation (7.0.19)...
View ArticleTomcat: possible to exclude jars during app deployment?
By default, Tomcat prevents webapps from loading several .jars which are part of the Tomcat distribution (eg the servlet and JSP APIs) - is it possible to configure others to also be excluded?If it...
View Article