在pom.xml中包含jstl依赖项时出错

时间:2020-05-01 05:27:15

标签: spring maven jstl

在Eclipse中,Maven在pom.xml中显示了一个依赖关系问题:

enter image description here

我该如何解决?预先感谢。

1 个答案:

答案 0 :(得分:0)

尝试将pom.xml中的依赖项更改为:

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

您可能还想看看this related question

相关问题