当前位置: 首页 > 工具软件 > Jetty Runner > 使用案例 >

IDEA 的 Jetty 启动成功,运行 JSP 页面报错

葛子昂
2023-12-01

IDEA 的 Jetty-runner 插件运行 JSP 页面报错:No org.apache.tomcat.InstanceManager set in ServletContext

原因:版本的对应关系

需要确保 web.xml 中定义的 servlet 版本和 pom.xml 中引入的 servlet 版本是一致的

web.xml

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                             http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" 
         version="3.1">

pom.xml

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
</dependency>

记录一下。

来源:https://www.oschina.net/question/12_2286727

 类似资料: