您的位置:首页 > 运维架构 > Apache

ssm整合maven,jsp出现Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException

2018-02-26 13:47 597 查看
网上介绍了很多情况。我说一下我遇见的。
maven pom.xml文件中jstl错误

<!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl -->
<dependency>
    <groupId>javax.servlet.jsp.jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>

应为下面

<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐