标签:启动 nbsp webapp 直接 accesslog 设置 默认 catalina localhost
功能需求:访问localhost:8080 直接访问项目页面
配置实现:
war 包放在tomcat文件下webapps下
D:\tomcat\apache-tomcat-8.5.33\webapps
打开server.xml
D:\tomcat\apache-tomcat-8.5.33\conf\server.xml
第一种:如图加上
<Context path="" docBase="项目名" debug="0" reloadable="true"/>
这种方法会造成项目启动加载2次
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <!-- 改默认的设置项目名 --> <Context path="" docBase="项目名" debug="0" reloadable="true"/> <!-- SingleSignOn valve, share authentication between web applications Documentation at: /docs/config/valve.html --> <!-- <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> --> <!-- Access log processes all example. Documentation at: /docs/config/valve.html Note: The pattern used is equivalent to using pattern="common" --> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%h %l %u %t "%r" %s %b" /> </Host>
第二种
将
<Context path="" docBase="项目名" debug="0" reloadable="true"/>
换成
<Context path="" docBase="D:\tomcat\apache-tomcat-8.5.33\webapps\项目名" debug="0" />
D:\tomcat\apache-tomcat-8.5.33\webapps\项目名 为项目绝对路径
标签:启动 nbsp webapp 直接 accesslog 设置 默认 catalina localhost
原文地址:https://www.cnblogs.com/jsbk/p/9866413.html