Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building Better Monoliths – Modulithic Applications with Spring Boot

Building Better Monoliths – Modulithic Applications with Spring Boot

How to improve the design of your monolithic applications build with Spring Boot.

Oliver Drotbohm

November 06, 2019
Tweet

More Decks by Oliver Drotbohm

Other Decks in Programming

Transcript

  1. 2

  2. Monolith VS. Microservice 3 Module
 A Module
 B Module
 C

    Module
 B Module
 C Module
 A Bounded Context Deployment Unit Internal invocation External invocation
  3. Monolith 4 The application packages the implementation of multiple Bounded

    Contexts as a single deployment unit. Easy to refactor Easy to test the overall system Likely to degrade unless explicitly managed Harder to test individual Bounded Contexts
  4. Microservices 5 A bounded context defines the boundaries of the

    deployment artifact. Often parts of the context are even deployed as separate processes. ◦ Bounded Context interaction is remote ◦ Testing individual modules Hard to refactor context boundaries Hard to test the overall system
  5. Design goals 7 1. Minimally invasive As little additional metadata

    as possible required. Advanced customizations might need additional information. 2. Test support Individual modules should be testable standalone. 3. Minimize distance to development workflow Feedback about architecture violations as fast as possible.
  6. Development workflow 8 Compiler Tests Build Runtime Distance to edit

    / run cycle Where do I want my checks to live?
  7. Moduliths 12 1. A convention to map contexts to packages

    Packages directly nested underneath the main application package are considered context ones.
  8. Moduliths 14 1. A convention to map contexts to packages

    Packages directly nested underneath the main application package are considered context ones. 2. Simple set of access rules and API to verify Only access components in module API packages.
  9. Access Rules 15 Moduliths verifies a couple of rules imposed

    on your modules. No cyclic dependencies Only allows explicitly allowed dependencies Prevents field injection "
  10. Access Rules 17 Moduliths verifies a couple of rules imposed

    on your modules. No cyclic dependencies Only allows explicitly allowed dependencies Prevents field injection " Use module base package as API package
  11. Moduliths 20 1. A convention to map contexts to packages

    Packages directly nested underneath the main application package are considered context ones. 2. Simple set of access rules and API to verify Only access components in module API packages. 3. Test support to bootstrap modules Integration with Spring test context framework and Spring Boot integration test support to limit bootstrap (component & entity scanning) to only the involved packages.
  12. 22 package com.acme @SpringBootApplication class MyApplication { … } package

    com.acme.moduleA @ModuleTest // Instead of @SpringBootTest class MyModuleTests { … } Applies package conventions Bootstraps single module for test
  13. Dependency types 32 1. Simple type dependency References to aggregates

    and entities of other modules. 2. Component dependency References to other Spring beans, required to bootstrap the module 3. Events & event listeners Dependency on some other module’s event type. Interesting as they’re great hooks for testing. #☝Avoid!
  14. Bootstrap modes 35 1. Standalone Bootstraps the module the test

    is contained in. Components in other modules the bootstrapped module depends on need to be provided through @MockBean. 2. Direct dependencies Bootstraps the module including the modules it directly depends on. Transitive dependencies have to be mocked just like in standalone mode. 3. All dependencies Bootstraps the entire sub-tree of modules starting from the current one.
  15. Moduliths 36 1. A convention to map contexts to packages

    Packages directly nested underneath the main application package are considered context ones. 2. Simple set of access rules and API to verify Only access components in module API packages. 3. Test support to bootstrap modules Integration with Spring test context framework and Spring Boot integration test support to limit bootstrap (component & entity scanning) to only the involved packages. 4. Documentation support PlantUML integration via Simon Brown’s Structurizr to document module structure and dependency types.
  16. Multiple Artifacts 39 Every module port becomes a dedicated build

    artifact. Dedicated control over dependencies Test scope is defined by the artifact Potential explosion of number of artifacts Internal structure visible to the outside
  17. Java Module System 40 Every module becomes a Java 9+

    module. ◦ Strong coupling between module and artifact ◦ Semantics of the „opens“ keyword ◦ No test support
  18. External Tools 41 External tools (e.g. jQAssistant, Sonargraph, jDepend) integrated

    into the build and executed in the CI environment are used to signal structural violations. Most extensive option Distance to development workflow
  19. Development workflow 42 Compiler Tests Build Runtime Moduliths Maven Modules

    Jigsaw / OSGi jQA etc. Applies rules Invasiveness (bigger is stronger)
  20. Moduliths 43 1. A convention to map contexts to packages

    Packages directly nested underneath the main application package are considered context ones. 2. Simple set of access rules and API to verify Only access components in module API packages. 3. Test support to bootstrap modules Integration with Spring test context framework and Spring Boot integration test support to limit bootstrap (component & entity scanning) to only the involved packages. 4. Documentation support PlantUML integration via Simon Brown’s Structurizr to document module structure and dependency types.
  21. Resources 44 Moduliths Project website on GitHub Majestic Modular Monoliths

    Video on Youtube Modular Monoliths Simon Brown – Video on YouTube Refactoring to a System of Systems Video on YouTube