DEV Community

Daniel Gomes
Daniel Gomes

Posted on

DynamoDB com Spring Cache

version: '3.0'

services:

  localstack:
    image: localstack/localstack:latest
    environment: 
      - AWS_DEFAULT_REGION=ap-southeast-1
      - EDGE_PORT=4566
      - SERVICES=dynamodb
      - KINESIS_PROVIDER=kinesalite
    ports:
      - '4566:4566'
    volumes:
      - "${TMPDIR:-/tmp/localstack}:/tmp/localstack"
      - "/var/run/docker.sock:/var/run/docker.sock"
Enter fullscreen mode Exit fullscreen mode

msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi

<!-- https://mvnrepository.com/artifact/com.dasburo/spring-cache-dynamodb -->
<dependency>
    <groupId>com.dasburo</groupId>
    <artifactId>spring-cache-dynamodb</artifactId>
    <version>0.9.3</version>
</dependency>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)