spring-data-dynamodb icon indicating copy to clipboard operation
spring-data-dynamodb copied to clipboard

This module deals with enhanced support for a data access layer built on AWS DynamoDB.

Results 33 spring-data-dynamodb issues
Sort by recently updated
recently updated
newest added

Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.13.0 to 3.20.0. Release notes Sourced from maven-pmd-plugin's releases. 3.19.0 🐛 Bug Fixes [MPMD-353] - API incompatibility with jansi after upgrading m-shared-… (#91) @​adangel 📦 Dependency updates...

dependencies

## Expected Behavior `NotContains` should return list of `Acknowledgements` when `acknowledgements` does not contains `username`. `public List findAllByAcknowledgementsNotContainsAndActiveIsTrue(String username);` where Acknowledgement: ``` @DynamoDBTable(tableName = "acknowledgement") @Getter @Setter @NoArgsConstructor public class...

## Expected Behavior It ll be great that the library had compability with JpaSpecificationExecutor from JPA framework

## Expected Behavior No errors after changing dependencies ## Actual Behavior Error has been thrown: `com.amazonaws.services.dynamodbv2.model.ResourceNotFoundException: Requested resource not found (Service: AmazonDynamoDBv2; Status Code: 400; Error Code: ResourceNotFoundException; Request ID:...

## Expected Behavior I would like to remove setters and getters from entity class and replace them with annotation: `@AccessType(AccessType.Type.FIELD)` ## Actual Behavior com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMappingException: Example; no mapping for HASH key...

## Expected Behavior ## Actual Behavior User: arn:aws:sts:::assumed-role//aws-sdk-java-1649071401744 is not authorized to perform: dynamodb:PutItem on resource: arn:aws:dynamodb:ap-southeast-1::table/ (Service: AmazonDynamoDBv2; Status Code: 400; Error Code: AccessDeniedException; Request ID: A400G97E6PDN6AOU3OEOH1O5AEMVJF66Q9ASUAAJG ## Steps...

Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.5 to 0.8.8. Release notes Sourced from jacoco-maven-plugin's releases. 0.8.8 New Features JaCoCo now officially supports Java 17 and 18 (GitHub #1282, #1198). Experimental support for Java...

dependencies

Hey, I'm using the latest version of your project (5.2.5), and noticed that there is no support in **transactions** by default. This is crucial for our project. is there something...

@Query(filterExpression = "#field = :value", consistentReads = QueryConstants.ConsistentReadMode.EVENTUAL, expressionMappingNames = {@ExpressionAttribute(key = "#field", value = "key")}, expressionMappingValues = {@ExpressionAttribute(key = ":value", parameterName = "key")}) List findByUidAndDeviceId(@Param("uid") String uid, @Param("device_id") String...

## Expected Behavior At first time, I think 'spring-data-dynamodb use reflection to entity'. so that, kotlin property can be assigned when access modifier is 'val' (no setter access modifier) because...