Unit testing DynamoDB Enhanced DAOs with DynamoDB Local in AWS SDK for Java 2.x
It can be frustrating when AWS puts out statements like “Amazon DynamoDB local now supports the AWS SDK for Java 2.x”, but provides no information on how to use it, or what that even means. This article will show how to use DynamoDb Local with the new DynamoDbEnhanced clients in the AWS SDK for Java 2.x. The DynamoDB enhanced client is a high-level library that is part of the AWS SDK for Java 2.x. It offers a straightforward way to map client-side classes to DynamoDB tables. If you’re familiar with DynamoDbMapper from v1 of the SDK, this is basically the same thing, but in v2. ...