1

我正在关注本指南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

4

1 回答 1

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>
于 2018-04-26T20:40:20.653 回答