Skip to content

Commit b8bd30f

Browse files
author
Surya Vikas
committed
Fixed the bug with XML configuration where DynamoDBMapperConfig was never picked up.
1 parent deef49a commit b8bd30f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.github.derjust</groupId>
55
<artifactId>spring-data-dynamodb</artifactId>
6-
<version>4.5.1-SNAPSHOT</version>
6+
<version>4.5.2-SNAPSHOT</version>
77
<name>Spring Data DynamoDb</name>
88
<description>Spring Data module providing support for DynamoDb repositories.</description>
99
<url>http://github.com/derjust/spring-data-dynamodb</url>

src/main/java/org/socialsignin/spring/data/dynamodb/repository/config/DynamoDBRepositoryConfigExtension.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public class DynamoDBRepositoryConfigExtension extends RepositoryConfigurationEx
3333

3434
private static final String DEFAULT_AMAZON_DYNAMO_DB_BEAN_NAME = "amazonDynamoDB";
3535

36-
private static final String DYNAMO_DB_MAPPER_CONFIG_REF = "dynamoDBMapperConfig";
36+
private static final String DYNAMO_DB_MAPPER_CONFIG_REF = "dynamodb-mapper-config-ref";
3737

38-
private static final String DYNAMO_DB_OPERATIONS_REF = "dynamoDBOperations";
38+
private static final String DYNAMO_DB_OPERATIONS_REF = "dynamodb-operations-ref";
3939

4040

4141
private static final String AMAZON_DYNAMODB_REF = "amazon-dynamodb-ref";

0 commit comments

Comments
 (0)