spring-data-dynamodb
spring-data-dynamodb copied to clipboard
This module deals with enhanced support for a data access layer built on AWS DynamoDB.
## Expected Behavior ## Actual Behavior ## Steps to Reproduce the Problem 1. 1. 1. ## Specifications - Spring Data DynamoDB Version: 5.2.5 - Spring Data Version: 2.5.8 - AWS...
Feature request, porting it initially from here: https://github.com/derjust/spring-data-dynamodb/issues/138 It would be great having support for the reactive spring boot stack. Currently, i'm getting: ``` org.springframework.dao.InvalidDataAccessApiUsageException: Reactive Repositories are not supported...
## Expected Behavior Repository method should return records as per filter criteria stated in @Query ## Actual Behavior During the springboot application start up it fails with below error **Getting...
With Reference to https://github.com/boostchicken/spring-data-dynamodb/issues/27 and https://github.com/boostchicken/spring-data-dynamodb/wiki/Change-Log We now have an option to filter the Query Result using filterExpression as below. With static parameters @Query(fields = "leaveDate", limit = 1, filterExpression...
`/db/config/DynamoDBConfig.java:3:26 java: package com.amazonaws.auth does not exist /db/config/DynamoDBConfig.java:4:26 java: package com.amazonaws.auth does not exist /db/config/DynamoDBConfig.java:5:26 java: package com.amazonaws.auth does not exist /db/config/DynamoDBConfig.java:6:26 java: package com.amazonaws.auth does not exist /db/config/DynamoDBConfig.java:7:29 java:...
## Expected Behavior When the DynamoDBREpositoryFactory is invoked, the version of spring-data-commons referenced in the pom.xml file should be recognized as the correct one. ## Actual Behavior When the DynamoDBREpositoryFactory...
## Expected Behavior Able to use QueryDSL with DynamoDB ## Actual Behavior QueryDsl Support has not been implemented yet ## Steps to Reproduce the Problem 1. extend QueryDSLPredicateExecutor If not...
When I invoke a repository method that makes a key search in dynamo: [![enter image description here][1]][1] ```json "{"TableName":"music","Key":{"artist":{"S":"Djavan"},"title":{"S":"Tempo"}},"ConsistentRead":false}" ``` this is aws output: ```json "{}" ``` And when i...
Hi, we currently use the latest version of your spring data dynamo-db (5.2.5) as one of our maven dependencies, and it has reported a vulnerability CVE-2014-8122 with cdi-api jar which...
## Expected Behavior It would be nice to implement transaction support for dynamodb since now the aws sdk supports transaction. So, we can implement Spring `PlatformTransactionManager` and provide support to...