maven 中使用jstl 错误解决
Posted Sharplee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 中使用jstl 错误解决相关的知识,希望对你有一定的参考价值。
maven 中使用jstl表达式中出现如上错误。原因:
导入jstl 的jar包,却没有在pom文件中添加jstl相关的jar依赖项。
<!--jstl表达式--> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.2</version> </dependency>
以上是关于maven 中使用jstl 错误解决的主要内容,如果未能解决你的问题,请参考以下文章
maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.
Maven项目下导入jstl标签后,jsp文件加载依然加载不出来问题解决