ervlet-api.jar) - jar没有加载。请参阅Servlet规范2.3,第9.7.2节。违规类:javax / servlet / Servlet.class

时间:2016-04-18 13:59:50

标签: java tomcat servlets

我没有使用maven来构建我的项目,我需要会话变量,为什么我需要在构建路径中使用servlet-api.jar文件。但是,当我使用它配置maven时,它会向我发送错误

servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class

会话变量的代码

(session.getAttribute("surveyDesc")

因为stackoverflow不允许我发布其他问题。

1 个答案:

答案 0 :(得分:0)

尝试此依赖项并检查它是否有效。

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