michaellavelle / spring-data-dynamodb

Simplifies the development of creating an Amazon DynamoDB-based Java data access layer
https://derjust.github.io/spring-data-dynamodb/
Apache License 2.0
169 stars 284 forks source link

spring-data-dynamodb:1.0.2.RELEASE does not work with spring boot 1.3.0.RELEASE. #72

Closed czyoshida-naoko closed 8 years ago

czyoshida-naoko commented 8 years ago

spring-data-dynamodb:1.0.2.RELEASE does not work with spring boot 1.3.0.RELEASE.

When using with Spring boot 1.3.0.RELEASE, I got a runtime error like below. An initialization of a class extended CrudRepository is failed, then nested exception occurs. When using with Spring boot 1.2.7.RELEASE, it does not happen.

Please fix it, or please tell me the way to fix.

nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepository': Invocation of init method failed; nested exception is java.lang.AbstractMethodError: org.springframework.data.repository.core.support.RepositoryFactorySupport.getTargetRepository(Lorg/springframework/data/repository/core/RepositoryInformation;)Ljava/lang/Object;
derjust commented 8 years ago

Grab https://github.com/michaellavelle/spring-data-dynamodb/pull/73 and build it locally ('mvn install') and let us know if that works (Most of the street credz goes to @theonlyguills)

czyoshida-naoko commented 8 years ago

I tried #73 and it works fine! thnx for fixing :) so please let us be able to use #73 from http://repo.opensourceagility.com/release

derjust commented 8 years ago

Thanks for the feedback @czmatsunaga-naoko. Absolutely want to see it also at http://repo.opensourceagility.com/release but that's to be done by @michaellavelle, the project owner/author.

jdhankins commented 8 years ago

Confirmed that #73 works. Thanks.

derjust commented 8 years ago

https://search.maven.org/#search%7Cga%7C1%7Ccom.github.derjust - Hopefully we can merge that back here somewhen.

derjust commented 8 years ago

As (privately) communicated with @michaellavelle, the project will continue under https://github.com/derjust/spring-data-dynamodb.

czyoshida-naoko commented 8 years ago

@derjust Thanx, again.