Prevent jetty from scanning annotations in jars (reduces startup time)
parent
30db2182a3
commit
5908901662
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
|
||||||
|
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
|
||||||
|
<Call name="setAttribute">
|
||||||
|
<Arg>org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern</Arg>
|
||||||
|
<Arg>none</Arg>
|
||||||
|
</Call>
|
||||||
|
<Call name="setAttribute">
|
||||||
|
<Arg>org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern</Arg>
|
||||||
|
<Arg>none</Arg>
|
||||||
|
</Call>
|
||||||
|
</Configure>
|
Loading…
Reference in New Issue