内嵌jetty11时,org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
时间: 2023-10-03 07:08:26 浏览: 189
JSPservlet中web.xml详细配置指南(包含所有情况)
5星 · 资源好评率100%
这个问题通常是因为 Jetty 11 默认不包含 JSP 支持,需要手动添加 jetty-jsp 和 javax.servlet.jsp 相关的依赖。你可以在你的项目中添加以下依赖:
```xml
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>11.0.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet.jsp</artifactId>
<version>2.3.2-b06</version>
</dependency>
```
然后重新启动你的应用程序,这个问题应该就可以解决了。
阅读全文