我遵循本指南spring-data-jdbc-ext
我试图在我的pom.xml上设置这种依赖
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jdbc</artifactId>
<version>1.0.0.M2</version>
</dependency>
但我最终出现了这个错误
使用此maven依赖项(在快速入门指南中提供),在存储库中找不到此类文件或目录。
我使用的是Maven 4.0.0版本
答案 0 :(得分:3)
将此存储库添加到您的pom:
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>