Open gerrytan opened 5 years ago
I have the same issue on 2.1.6.RELEASE Spring Data version, and I backward the Spring-Data-DynamoDB version to 5.0.4 to workaround. Anyone have work on 5.1.0 version on Spring Data version 2.1 above?
same issue
I have the same issue with :
<artifactId>spring-data-dynamodb</artifactId>
<version>5.1.0</version>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
I tried using previous versions of each and that doesn't seem to fix it. Does anyone know about a workaround?
me too, I have to rollback again... hope someone can fix this issue.
what's the resolution here?
We have a requirement to inject the table name at runtime, hence in version 4.5.0 we injected multiple DynamoDBMapperConfig, one per table, with a table name override.
For each table, we have a configuration bean with following annotation:
When upgrading to 5.1.0, application fail to start due to wiring issue
Expected Behavior
Application can start same as version 4.5.0
Actual Behavior
Application fail to start with following error
Steps to Reproduce the Problem
dynamoDBMapperConfigRef
Specifications
All those information are logged by
org.socialsignin.spring.data.dynamodb.repository.support.DynamoDBRepositoryFactory
onINFO
level on startup. Or usejava -version
andmvn dependency:tree | grep -E 'spring|aws'
to provide those version numbers.