我遇到了问题而且我没有看到解决方案。
我有一个在slepos下运行的jetty应用服务器。它启动,webapps文件夹包含一个上下文文件xml ...
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN"
"http://www.eclipse.org/jetty/configure_9_0.dtd">
<Configure class="org.eclipse.jetty.quickstart.QuickStartWebApp">
<Set name="contextPath"><Property name="noti_1.0.0.localbuild"/>/</Set>
<Set name="war">/programs/noti/noti_1.0.0.localbuild</Set>
<Set name="tempDirectory">/programs/jetty_applicationserver/temp/noti1.0.0.localbuild</Set>
<Set name="autoPreconfigure">true</Set>
<Call name="setAttribute">
<Arg>org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern</Arg>
<Arg>nothing.jar</Arg>
</Call>
这不会导致部署错误,但会在根目录中显示jetty
/ ---> o.e.j.q.QuickStartWebApp@18486a3{/,file:///programs/noti/noti_1.0.0.localbuild/,UNAVAILABLE}{/programs/noti/noti_1.0.0.localbuild} [failed]
你能帮帮我吗?我认为这不是一件大事!
我尝试将其部署为unziped和文件夹&#34; /programs/noti/noti_1.0.0.localbuild"存在并被填充,其中maven的内容属于&#34; noti_1.0.0.localbuild.war&#34;
完全相同的xml上下文描述文件适用于Windows(除了从c:\ programs到/ programs的路径)。这是令人兴奋的!
非常感谢!