dev-resources.site
for different kinds of informations.
SpringData DynamoDB CRUD Example | SpringBoot
https://loizenai.com/spring-data-dynamodb-crud-example/
SpringData DynamoDB CRUD Example | SpringBoot
In tradition approach, implementing Data Access Layer makes lots of boilerplate code. Spring Data helps us improve our codes and reduce efforts for development and maintenance. It supports us the ways to write interface for repositories and custom finder methods, the implementation will be done automatically by Spring Framework. In this tutorial, we're gonna look at how to use Spring Data DynamoDB with Spring Boot.
- Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability.
- With DynamoDB, you can create database tables that can store and retrieve any amount of data and serve any level of request traffic.
Related Posts:
- Spring MongoOperations to access MongoDB
- How to build SpringBoot MongoDb RestfulApi
- How to use SpringData MongoRepository to interact with MongoDB
Technology
- Java 1.8
- Maven 3.3.9
- Spring Tool Suite – Version 3.9.0.RELEASE
-
Spring Boot: 1.5.9.RELEASE
Goal
Project Structure
Class Customer corresponds to entity and table Customer.
CustomerRepository is an interface extends CrudRepository, will be autowired in WebController for implementing repository methods and custom finder methods.
WebController is a REST Controller which has request mapping methods for RESTful requests such as: save, delete, findall, findbyid, findbylastname.
Configuration for DynamoDB properties in application.properties. The
accesskey
andsecretkey
are just arbitrary values and are not needed to actually authenticate when accessing local instance of DynamoDB. The properties will be dynamically pulled out in the DynamoDBConfig.-
Dependencies for Spring Boot and DynamoDB in pom.xml
Create Spring Boot project & add Dependencies
More at:
https://loizenai.com/spring-data-dynamodb-crud-example/
SpringData DynamoDB CRUD Example | SpringBoot
Featured ones: