1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<?xml version='1.0' encoding='utf-8'?>
<Server
port="8005"
shutdown="SHUTDOWN"
debug="0"
>
<Listener
className="org.apache.catalina.mbeans.ServerLifecycleListener"
debug="0"
/>
<Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
debug="0"
/>
<Service name="service">
<Connector
name="connector"
address="127.0.0.1"
port="8080"
enableLookups="true"
/>
<Engine
name="standalone"
defaultHost="localhost"
debug="0"
>
<Host
name="localhost"
appBase="E:/work/projects/eclipse/workspace/StrutsTest/WebContent/"
unpackWARs="true"
autoDeploy="true"
xmlValidation="false"
xmlNamespaceAware="false"
>
<Logger
className="org.apache.catalina.logger.FileLogger"
directory="E:/work/projects/eclipse/workspace/StrutsTest/logs/"
prefix="tomcat-"
suffix=".log"
timestamp="true"
/>
<Context
path="StrutsTest"
docBase="E:/work/projects/eclipse/workspace/StrutsTest/WebContent/"
reloadable="true"
swallowOutput="true"
>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<Logger
className="org.apache.catalina.logger.FileLogger"
prefix="StrutsTest-log."
suffix=".log"
timestamp="true"
/>
</Context>
</Host>
</Engine>
</Service>
</Server> |
Partager