在Intellij Idea中jstl声明报错解决

xiaoxiao2021-02-28  113

首先我 能看到的解决方案都是跟这个http://blog.csdn.net/u013806366/article/details/51979930网址下面 的大同小异。

我要说的是可以参照上面网址去下载jstl的jar包。我这里就不说了。

下好包,解压,找到下两个jar包

不用去

你要做的 是从这里开始

最后的效果

c标签不会再报错,但是声明会有点小问题。哪位大哥知道 怎么解决欢迎留言。

------------------------------------------------------------------------------------------------------------------------------------------

maven项目,添加依赖。无需上面的复杂操作

<!-- 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/taglibs/standard --> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency>

转载请注明原文地址: https://www.6miu.com/read-41484.html

最新回复(0)