Skip to content

How to structure your code in a Spring Boot Application

Notifications You must be signed in to change notification settings

DrWrzipx/code-structure

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot Code Structure

Package Structure

Software Design Principles

Cohesion represents the relationship within a module. Coupling represents the relationships between modules.

Good (loose coupling, high cohesion) Bad (high coupling, low cohesion)

Encapsulation

In software systems, encapsulation refers to the bundling of data with the mechanisms or methods that operate on the data. It may also refer to the limiting of direct access to some of that data, such as an object's components.

Package by Layer

  • Promotes Best Practice (❌)
    • Low cohesion
    • High coupling
    • Low modularity
  • Encapsulation (❌)
    • Most classes must be public
  • Modularity (❌)
    • Since each layer is limited to classes related to a particular layer, it is difficult to break code down into a microservice later on.
  • Maintainability (❌)
    • Since classes are scattered across packages, it is difficult to find the class you are looking for.
  • Testability (❌)
    • Since classes are public, they can be accessed by tests in any package. This allows you to write less focused tests.
  • Domain Driven Design (❌)
    • Promotes Database Driven Design

Package by Feature

  • Promotes Best Practices
    • High cohesion
    • Low coupling
    • High modularity
  • Encapsulation (Minimize Scope)
    • Allows some classes to set their access modifier package-private instead of public.
  • Modularity
    • Since each package is limited to classes related to a particular feature, it is easy to break code down into a microservice later on.
  • Maintainability
    • Reduces the need to navigate between packages since all classes needed for a feature are in the same package.
  • Testability
    • Since classes are not public, they can only be accessed by tests in the same package. This allows you to write more focused tests.
  • Domain Driven Design
    • Promotes Domain Driven Design

Package by Feature & Package by Layer

I have seen that some prefer to break down their project by feature but then add a layer in each feature package. I think this is going to be a little bit of extra work and still have the side affects of package by layer.

About

How to structure your code in a Spring Boot Application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%