2016-12-29 51 views

回答

0

即使它在那裏,Jetty 9也找不到sitemesh * .jar。 所以,你必須下面的代碼添加到您的碼頭-context.xml中,使其工作:

<Configure class="org.eclipse.jetty.maven.plugin.JettyWebAppContext"> 
    <Call name="setAttribute"> 
     <Arg>org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern</Arg> 
     <Arg>^$|.*/sitemesh-[^/]*\.jar$</Arg> 
    </Call> 
</Configure> 

添加在這裏要碼頭掃描所有其他罐子名。

相關問題