如何解决“Dependency 'org.springframework. Boot :spring-boot-starter-validation:2.5.1' not found”的问题?
我的pom.xml文件看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>JavaDeveloperTask</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${project.parent.version}</version>
</plugin>
</plugins>
</build>
</project>
字符串
我已添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
型
但它仍然给了我错误。这会是什么原因造成的?
4条答案
按热度按时间flvlnr441#
@ekm0d.我在使用
Intellij IDEA
时遇到了同样的问题。下面是我在pom.xml
上插入这个之后所做的和为我工作的:字符串
1.右键单击项目文件。
1.点击
Maven
1.单击重新加载项目
1.等待
poem.xml
存档重新加载我希望它也适合你:)
quhf5bfb2#
对我来说很好中央存储库具有以下依赖性:https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.5.1/
所以我不明白为什么它不应该工作。可能是网络出了问题。
尝试将其从本地maven存储库中删除并再次下载。您可以在您的用户主页目录
.m2
中找到maven repo,删除.m2/repository/org/springframework/boot/spring-boot-starter-validation/2.5.1
文件夹fbcarpbf3#
您应该尝试关闭项目并重新打开它,
dependency
将自行下载。在我的案例中奏效了。
ddhy6vgd4#
在我的例子中,我遇到了以下两个依赖项的问题:
字符串
我不需要添加任何东西,我只是按照@ Emerson Cavalcante建议的步骤和额外的步骤:
1.右键单击项目文件。
1.点击
Maven
1.单击重新加载项目
1.等待
poem.xml
存档重新加载1.安装IntelliJ建议的插件(当弹出窗口出现时)