jetty9 不生效的解決方法

weixin_33728268發表於2017-11-04

最近做個小專案,本地用 jetty 跑習慣了,突然發現 <welcome-file-list> 不生效,用度娘沒找到,翻牆找到了篇很好的文章,給大家分享。
直接在你的web.xml增加:

<!-- Enable servlets as welcome files -->
<context-param>
    <param-name>
       org.eclipse.jetty.servlet.Default.welcomeServlets
    </param-name>
    <param-value>true</param-value>
</context-param>

這樣你的 localhost:8080localhost:8080/index.html 的訪問效果一樣了。

原文來自於:https://www.codesd.com/item/web-app-welcome-file-list-does-not-work-using-servlet-mapping.html

相關文章