Tomcat不输入项目名进入自己项目(根目录指向自己的项目)

£可爱£侵袭症+ 提交于 2020-02-04 00:12:14

<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
  <Context path="" docBase="Auto" debug="true" reloadable="true" />  <!-- 添加这一行 AUTO为项目名称 -->

  <!-- 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 &quot;%r&quot; %s %b" />

</Host>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!