当我使用 jetty6 时,我使用以下内容:
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Required minimal context configuration : -->
<!-- + contextPath -->
<!-- + war OR resourceBase -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<Set name="contextPath">/</Set>
<Set name="resourceBase"><SystemProperty name="jetty.home" default="."/>/webapps/myapp</Set>
</Configure>
此文件位于文件夹上下文中,名为 myapp.xml
但是切换到jetty 9,首先没有“contexts”这样的文件夹,我把myapp.xml和test.xml一样放入webapps,重新启动jetty并导航到http://localhost:8080
,页面保持默认,而不是我的应用程序。
任何人都可以给我一个提示吗?