严重: Servlet.service() for servlet [jsp] in context with path [/article] threw exception
时间: 2023-12-25 09:30:38 浏览: 134
jsp_servlet路径问题
根据提供的引用内容,"严重: Servlet.service() for servlet [jsp] in context with path [/article] threw exception" 是一个错误信息,表示在处理jsp请求时发生了异常。根据引用中的错误信息,我们无法确定具体的异常类型和原因。但是根据引用中的解决方案,可以尝试在项目的dependency中添加以下信息来解决该问题:
```xml
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.1</version>
<scope>provided</scope>
</dependency>
```
这样做的目的是确保项目中使用的servlet和jsp的版本与服务器提供的版本一致,以避免可能的兼容性问题。请尝试添加这些依赖项并重新运行项目,看看是否能够解决异常问题。
阅读全文