Slide 1

Slide 1 text

Modulithic Applications
 with Spring Boot Building better monoliths Oliver Drotbohm ƀ odrotbohm@pivotal.io / odrotbohm

Slide 2

Slide 2 text

2

Slide 3

Slide 3 text

Monolith VS. Microservice 3 Module
 A Module
 B Module
 C Module
 B Module
 C Module
 A Bounded Context Deployment Unit Internal invocation External invocation

Slide 4

Slide 4 text

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

Slide 5

Slide 5 text

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

Slide 6

Slide 6 text

How to maintain structure in a monolithic codebase? 6 !

Slide 7

Slide 7 text

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.

Slide 8

Slide 8 text

Development workflow 8 Compiler Tests Build Runtime Distance to edit / run cycle Where do I want my checks to live?

Slide 9

Slide 9 text

The Sample Codebase https://github.com/st-tu-dresden/salespoint 9

Slide 10

Slide 10 text

10 Orders Business
 Time Catalog Inventory Component Dependency Type dependency

Slide 11

Slide 11 text

Moduliths https://github.com/odrotbohm/moduliths Binaries available from https://repo.spring.io 11

Slide 12

Slide 12 text

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

Slide 13

Slide 13 text

Package Conventions 13 ….modulith ….modulith.moduleA ….modulith.moduleB Visibility modifiers and the compiler enough to hide internals.

Slide 14

Slide 14 text

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.

Slide 15

Slide 15 text

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

Slide 16

Slide 16 text

Module dependency verification DEMO 16

Slide 17

Slide 17 text

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

Slide 18

Slide 18 text

API Package Convention 18 ….modulith ….modulith.moduleA ….modulith.moduleB Visibility modifiers and the compiler enough to hide internals.

Slide 19

Slide 19 text

API Package Convention 19 ….modulith ….modulith.moduleA ….modulith.moduleA.internal ….modulith.moduleB ….modulith.moduleB.internal Access to components residing in internal packages
 forbidden and checked during tests.

Slide 20

Slide 20 text

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.

Slide 21

Slide 21 text

Web Business logic Data access @Data…Test Module A Module B Module C @WebMvcTest @…Test ?

Slide 22

Slide 22 text

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

Slide 23

Slide 23 text

24 Orders Business
 Time Catalog Inventory Component Dependency Type dependency

Slide 24

Slide 24 text

Single module bootstrap DEMO 25

Slide 25

Slide 25 text

Orders 28 Business
 Time Catalog Inventory Component Dependency Type dependency

Slide 26

Slide 26 text

Detect and remove violation DEMO 29

Slide 27

Slide 27 text

30 Orders Business
 Time Catalog Inventory Component Dependency Type dependency 
 Event Event publication

Slide 28

Slide 28 text

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!

Slide 29

Slide 29 text

33 Orders Business
 Time Catalog Inventory Component Dependency Type dependency 
 Event Event publication

Slide 30

Slide 30 text

Multi module bootstrap DEMO 34

Slide 31

Slide 31 text

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.

Slide 32

Slide 32 text

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.

Slide 33

Slide 33 text

Documentation DEMO 37

Slide 34

Slide 34 text

Tool ecosystem and alternative approaches 38

Slide 35

Slide 35 text

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

Slide 36

Slide 36 text

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

Slide 37

Slide 37 text

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

Slide 38

Slide 38 text

Development workflow 42 Compiler Tests Build Runtime Moduliths Maven Modules Jigsaw / OSGi jQA etc. Applies rules Invasiveness (bigger is stronger)

Slide 39

Slide 39 text

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.

Slide 40

Slide 40 text

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

Slide 41

Slide 41 text

Thank you! 45 Oliver Drotbohm ƀ odrotbohm@pivotal.io / odrotbohm