随笔 - 363  文章 - 0 评论 - 35 阅读 - 39万
< 2025年1月 >
29 30 31 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 1
2 3 4 5 6 7 8

gs-rest-service-0.1.0.war复制到tomcat-9.0.0.M17\webapps\
打开server.xml,这Host节点,加入<Context path="/gs" docBase="gs-rest-service-0.1.0.war" debug="0" privileged="true"/> 
gs相当于虚拟目录,docBaset填写相对应Host 的 appBase的地址,加后缀war
<Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="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 &quot;%r&quot; %s %b" />
            <!-- Tomcat Manager Context --> 
            <Context path="/gs" docBase="gs-rest-service-0.1.0.war" debug="0" privileged="true"/> 
      </Host>
可以用地址访问:
http://localhost:8080/gs/greeting/
posted on   袁晓平  阅读(149)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示