Code Monkey home page Code Monkey logo

java-springboot-microservices-patterns-exemples's Introduction

java-springboot-microservices-patterns-exemples

This project implements the Messaging, Database Per Service, CQRS, Domain Event, Transactional Outbox, Polling Publisher, and Idempotent Consumer microservices patterns described in microservices.io using the following technologies:

Implemented Patterns

  • Messaging
    • This pattern is implemented through the publication of events generated in a RESTful API in an Aws SNS Topic, sending them to an Aws SQS Queue through topic subscription and consumption of these messages by the application. The following classes implements this pattern:
      • AwsConfig
      • DumbEntityTransactionOutboxNonSequencialPublisher
      • DumbQueueConsumer
  • Database Per Service
    • This pattern is implemented through the use of a single database for writing operations by the application.
  • CQRS
    • This pattern is implemented through the use of two different connections to the database, one with only read access granted, and the other with read and write access granted. The following classes implements this pattern:
      • DumbEntityReadOnlyRepository
      • SecondDumbEntityReadOnlyRepository
      • DumbEntityTransactionOutboxWriteRepository
      • DumbEntityWriteRepository
      • SecondDumbEntityWriteRepository
      • R2dbcReadonlyConfiguration
      • R2dbcWriteConfiguration
  • Domain Event
    • This pattern is implemented by sending domain events about the management of the main entity of the project's RESTFul endpoints. The following classes implements this pattern:
      • DumbEntityController
      • DumbEntityTransactionalService
      • DumbEntityTransactionOutboxNonSequencialPublisher
      • DumbEntityWriteRepository
      • DumbEntityTransactionOutboxWriteRepository
  • Transactional Outbox
    • This pattern is implemented by persisting the event to be published in the Aws SNS Topic in a database table in the same transaction that generates the domain event related to the event to be sent. The following classes implements this pattern:
      • DumbEntityController
      • DumbEntityTransactionalService
      • DumbEntityTransactionOutboxWriteRepository
  • Polling Publisher
    • This pattern is implemented through a timed process that publishes the events in an Aws SNS Topic obtained from a database table. The following classes implements this pattern:
      • DumbEntityTransactionOutboxNonSequencialPublisher
      • DumbEntityTransactionOutboxWriteRepository
  • Idempotent Consumer
    • This pattern is implemented through the consumption of messages received in the Aws SQS Queue in order to guarantee that each one will only be processed once. The following classes implements this pattern:
      • DumbQueueConsumer
      • SecondDumbEntityWriteRepository

Initializing the infrastructure

To initialize the infrastructure needed to the tests and the application, execute the following command:

./gradlew runAppInfrastructureComposeUp

This will create an Instance of MySql with one database named dumb_db with three tables represented by the entities DumbEntity, SecondDumbEntity and DumbEntityTransactionOutbox. This is done by running the scripts / schema.sql file. The initialization process will also create a read only user by running the scripts / createreadonlyuser.sql file.

A localstack container will also be created to simulate the needed AWS resources. The AWS resources are created if they not exist in the initialization of the application through the AwsConfig configuration class.

To destroy the resources created in the infrastructure initialization run the following command:

./gradlew runAppInfrastructureComposeDown

Configuring the application for integration tests and run

The application is automatically configured to run and for the integration tests through the build.gradle configuration file. The following environment variables are configured:

  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_SERVICE_HOST
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_SERVICE_PORT
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_SERVICE_DATABASE
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_READONLY_SERVICE_USER
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_READONLY_SERVICE_PASSWORD
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_WRITE_SERVICE_USER
  • JAVA_SPRINGBOOT_REACTIVE_API_EXEMPLE_MYSQL_WRITE_SERVICE_PASSWORD
  • AWS_SNS_ENDPOINT
  • AWS_SQS_ENDPOINT
  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
  • AWS_REGION

Running the integration tests

After then infrastructure initialization you can run the integration tests by simple running the following command:

./gradlew build

Running the application

After then infrastructure initialization you can run the application executing the following command:

./gradlew bootRun

The application will expose 4 endpoints:

  • Dumb entity PUT
    • This endpoint persists a new or already saved DumbEntity entity, and persists a new DumbEntityTransactionOutbox entity within the same bank transaction
  • Dumb entity GET
    • This endpoint gets a DumbEntity register
  • Dumb entity LIST
    • This endpoint lists DumbEntity registers
  • Dumb entity DELETE
    • This endpoint deletes the DumbEntity entity and persist a new DumbEntityTransactionOutbox entity within the same bank transaction

To call the exposed endpoints, you can access the swagger-ui page via the address http://localhost:8080/swagger-ui.html in the browser.

The application configures a scheduler that run every 10 seconds afters the finish of the last execution to get the DumbEntityTransactionOutbox entities not sent to the SNS Topic. DumbEntityTransactionOutboxNonSequencialPublisher class.

The application also configures an idempotent SQS Queue Consumer to the events published to the SNS Topic and sent to the Sqs Queue through topic subscription. DumbQueueConsumer class.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.