打包成.war的步骤就不说了,之后的配置和上一次的不一样。
在Tomcat的conf下的server.xml文件中,重新配置如下
<Service name="xfwweb"> <Connector port="7070" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> <Engine name="xfwweb" defaultHost="localhost"> <Realm className="org.apache.catalina.realm.LockOutRealm"> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> </Realm> <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%h %l %u %t "%r" %s %b" /> <Context docBase="C:\Program Files\Apache Software Foundation\Tomcat 8.5\webapps\registerAdmin" path="/" reloadable="true" source="" /> </Host> </Engine> </Service>
port="7070"表示地址访问的端口,
<Context docBase="C:\Program Files\Apache Software Foundation\Tomcat 8.5\webapps\registerAdmin" path="/" reloadable="true" source="" />这句表示程序的路径地址。
name="xfwweb"可以写实际程序的名字。