HTTP Status 500

今天在用idea搭建spring mvc时候报了这个错误,缺少jstl的依赖包。由于是使用的spring-core的依赖,而spring-core里面是有jstl的。这就郁闷了,最后是在自己的pom.xml里面又引入了jstl解决的

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>


重启 项目 正常了。
原文地址:https://www.cnblogs.com/thinkingandworkinghard/p/6481671.html