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

问题描述 投票:0回答:1

在Eclipse中,Maven在pom.xml中显示了依赖性问题:

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS80RDJrOC5wbmcifQ==” alt =“在此处输入图像描述”>

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

spring maven jstl
1个回答
0
投票

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

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

您可能还想看看this related question

© www.soinside.com 2019 - 2024. All rights reserved.