尝试添加spring-data时缺少工件

时间:2014-01-30 19:55:53

标签: spring maven spring-data

我正在尝试将spring数据依赖项添加到我的Spring启动项目但我收到错误:Missing artifact org.springframework.data:spring-data-jdbc-ext:jar:1.0.0.RELEASE

这是我的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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
  <groupId>com.test</groupId>
  <artifactId>myApp</artifactId>
  <version>0.0.1-SNAPSHOT</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.0.0.RC1</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf-spring4</artifactId>
        </dependency>
            <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-jdbc-ext</artifactId>
        <version>1.0.0.RELEASE</version>
    </dependency>
    </dependencies>

    <properties>
        <start-class>com.test.Application</start-class>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-milestone</id>
            <url>http://repo.spring.io/libs-milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-milestone</id>
            <url>http://repo.spring.io/libs-milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>
</project>

1 个答案:

答案 0 :(得分:3)

出于某种原因,Spring Data JDBC Extensions网站上的文档错误(或分发错误!)。

根据该页面,您确实需要包含您提及的依赖项。

<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jdbc-ext</artifactId>
    <version>1.0.0.RELEASE</version>
</dependency>

但是,如果你在the spring repository查看该工件,它包含一个带有release的zip文件,而不是jar或pom文件。

spring-data-jdbc-ext项目由2个工件组成,两个工件都可用。将您的依赖项更改为以下

<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jdbc-core</artifactId>
    <version>1.0.0.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-oracle</artifactId>
    <version>1.0.0.RELEASE</version>
</dependency>

如果您不需要特定的Oracle扩展,那么您可以将其删除。

小小的说明还有1.1.0.M1版本(里程碑/预发布版本),它与更新版本的Spring Data一起使用。您可能希望尝试使用而不是针对旧版Spring Data构建的1.0.0.RELEASE版本。