当我使用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
但是切换到码头9,第一有没有这样的文件夹“上下文”,我把myapp.xml到web应用一样的test.xml,重新启动码头和导航到http://localhost:8080
,页面仍然是默认的,不是我的应用程序。
任何人都可以给我一个提示?