mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-05 18:11:11 +00:00
14 lines
591 B
XML
14 lines
591 B
XML
<!-- Tomcat context descriptor used for specifying a custom ClassLoader -->
|
|
<!-- Useful for allowing web-app wide (as opposed to VM or container wide) class instrumentation -->
|
|
<Context path="/petclinic" reloadable="false">
|
|
<!-- Tomcat 6.x or higher -->
|
|
<!--
|
|
<Loader loaderClass="org.springframework.instrument.classloading.tomcat.TomcatInstrumentableClassLoader"/>
|
|
-->
|
|
|
|
<!-- Tomcat 5.5.x (higher then 5.5.20) -->
|
|
<!--
|
|
<Loader loaderClass="org.springframework.instrument.classloading.tomcat.TomcatInstrumentableClassLoader" useSystemClassLoaderAsParent="false"/>
|
|
-->
|
|
|
|
</Context>
|