使用了源代码还是报错,然后搜了下,要在maven下依赖
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
下面是解决问题的链接……
https://stackoverflow.com/questions/13285826/can-not-find-the-tag-library-descriptor-for-http-java-sun-com-jsp-jstl-core
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
下面是解决问题的链接……
https://stackoverflow.com/questions/13285826/can-not-find-the-tag-library-descriptor-for-http-java-sun-com-jsp-jstl-core
2017-10-04
maven很简单的,不用这么麻烦,直接eclipse --> File --> New --> Maven Project(勾选Create a simple project) --> Next --> 填写相关信息 --> Finish,然后包什么的都给你建好了,然后在POM.xml添加对应的需要的约束就好了
2017-09-30