私はjetty6を使用すると、私は次のように使用します、フォルダのコンテキストにあります。このファイルWebアプリケーションをrootアプリケーションとしてjetty9にデプロイするにはどうすればいいですか?
<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をtest.xmlのようにwebappsに入れ、jettyを再起動してhttp://localhost:8080
に移動すると、ページはアプリケーションではなくデフォルトのままになります。
誰でも私にヒントを教えてもらえますか?桟橋6では
「機能していません」とは、十分な問題の説明ではありません。 –