2012-03-08 139 views
3

有沒有人有一個想法如何使用Spring Data JPA並使用Spring 3.1.0/3.1.1?使用彈簧數據JPA與Spring 3.1.0

Spring Data JPA 1.0.3依賴於spring 3.0.5,所以當我添加彈簧數據jpa作爲依賴關係時,我得到了一個衝突,因爲我使用的是3.1.0。

我試過使用maven排除,但一直沒有太大的成功。

回答

6

我成功地將Spring Data JPA 1.0.3與Spring 3.1.0集成。下面是一個剝離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/maven-v4_0_0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>com.example</groupId> 
    <artifactId>example</artifactId> 
    <version>1.0.0-SNAPSHOT</version> 

    <dependencies> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-core</artifactId> 
      <version>3.1.0.RELEASE</version> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-aspects</artifactId> 
      <version>3.1.0.RELEASE</version> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-orm</artifactId> 
      <version>3.1.0.RELEASE</version> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-test</artifactId> 
      <version>3.1.0.RELEASE</version> 
      <scope>test</scope> 
     </dependency> 

     <dependency> 
      <groupId>org.springframework.data</groupId> 
      <artifactId>spring-data-jpa</artifactId> 
      <version>1.0.3.RELEASE</version> 
     </dependency> 
    </dependencies> 

</project> 

看着傳遞依賴,似乎一切都OK:

$ mvn dependency:tree 
    com.example:example:jar:1.0.0-SNAPSHOT 
+- org.springframework:spring-core:jar:3.1.0.RELEASE:compile 
| +- org.springframework:spring-asm:jar:3.1.0.RELEASE:compile 
| \- commons-logging:commons-logging:jar:1.1.1:compile 
+- org.springframework:spring-aspects:jar:3.1.0.RELEASE:compile 
| +- org.springframework:spring-beans:jar:3.1.0.RELEASE:compile 
| +- org.springframework:spring-context:jar:3.1.0.RELEASE:compile 
| | +- org.springframework:spring-aop:jar:3.1.0.RELEASE:compile 
| | \- org.springframework:spring-expression:jar:3.1.0.RELEASE:compile 
| \- org.springframework:spring-context-support:jar:3.1.0.RELEASE:compile 
+- org.springframework:spring-orm:jar:3.1.0.RELEASE:compile 
| +- org.springframework:spring-jdbc:jar:3.1.0.RELEASE:compile 
| \- org.springframework:spring-tx:jar:3.1.0.RELEASE:compile 
|  \- aopalliance:aopalliance:jar:1.0:compile 
+- org.springframework:spring-test:jar:3.1.0.RELEASE:test (scope not updated to compile) 
\- org.springframework.data:spring-data-jpa:jar:1.0.3.RELEASE:compile 
    +- org.springframework.data:spring-data-commons-core:jar:1.1.0.RELEASE:compile 
    +- org.slf4j:slf4j-api:jar:1.6.1:compile 
    +- org.slf4j:jcl-over-slf4j:jar:1.6.1:runtime 
    \- org.aspectj:aspectjrt:jar:1.6.8:compile 

你有什麼樣的矛盾?

+0

謝謝,添加-Dverbose到你的樹代... – 2012-03-08 15:04:19

+1

是的,你會得到很多:'org.springframework:spring-beans:jar:3.0.5.RELEASE:compile - 爲了與3.1.0衝突而省略.RELEASE' - 這很好,maven選擇新的或明確聲明的依賴關係。功能,而不是一個錯誤:-)。你的最終神器將使用更新的版本。 – 2012-03-08 15:10:34

相關問題