-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
#2373 feature add: Vertical Slice Architecture. #2828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
777a5dc
#2373 add: Vertical Slice Architecture.
sugan0tech 3f1828a
fixed code smell
sugan0tech 1b130b1
App code coverage changes
sugan0tech 272cb87
local variable in var declaration
sugan0tech c189ae9
added more context with example
sugan0tech cf06c64
Merge branch 'iluwatar:master' into master
sugan0tech 24d5063
Added better explanation and updated README.md
sugan0tech 4e0c2c2
Merge branch 'master' into master
sugan0tech 0b160cb
Merge branch 'master' into master
sugan0tech b84112d
Merge branch 'master' into master
sugan0tech 72c9c87
Merge branch 'master' into master
sugan0tech dda150f
Merge branch 'master' into master
sugan0tech c52566d
correction updated with pattern template.
sugan0tech 70fde67
Merge remote-tracking branch 'origin/master'
sugan0tech 08b77c5
added file structure.
sugan0tech e704103
Merge branch 'master' into master
sugan0tech 7e775f3
Merge branch 'master' into master
sugan0tech File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
title: Vertical Slice Architecture | ||
category: Architectural | ||
language: en | ||
tag: | ||
- Decoupling | ||
--- | ||
|
||
## Intent | ||
|
||
Organize the application according to its features. | ||
Each feature will comprise its distinct set of layers (Models, Services, Repository, and Controllers). | ||
|
||
## Explanation | ||
|
||
Real-World Examples (Consider E-commerce) | ||
|
||
> In the context of an e-commerce application, the concept of vertical slice architecture becomes clear. | ||
> Imagine you're building a backend service for an online store. | ||
> Initially, you may organize it with the typical grouping of controllers, models, and other components. | ||
> As the application grows, the need arises to implement new features. | ||
|
||
> For instance, you might have distinct layers for orders, customers, and products. However, as the application | ||
> evolves, you realize the necessity of integrating additional features like a Cart system and wishlists. | ||
> At this point, integrating these new features into the existing structure becomes challenging. | ||
> It demands significant dependency modifications and mocking, which can be time-consuming and error-prone. | ||
|
||
> This is where vertical slice architecture proves its value. | ||
> By structuring the application based on features, | ||
> you create self-contained modules that encapsulate all the necessary components | ||
> (Models, Services, Repository, and Controllers) for a particular feature. | ||
> When you need to add new features, you can do so in a more isolated and manageable manner. | ||
|
||
In Plain Words | ||
|
||
> Vertical slice architecture is like organizing your toolbox. | ||
> Instead of having all your tools mixed together, you group them based on the type of task they perform. | ||
> This way, when you need a specific tool for a particular job, | ||
> you can quickly find it without rummaging through a jumble of items. | ||
|
||
> Similarly, in software development, vertical slice architecture involves organizing the codebase based on features. | ||
> Each feature has its own self-contained set of components, making it easier to add, modify, or remove features without disrupting the entire application. | ||
|
||
**File structure** | ||
> have a look in the below file structure, as per vertical slice architecture we are grouping model, view and controller per package associated with the feature. | ||
|
||
``` | ||
- ecommerce | ||
├── customer | ||
│ ├── Customer.java | ||
│ ├── CustomerRepository.java | ||
│ ├── CustomerService.java | ||
│ └── CustomerView.java | ||
├── order | ||
│ ├── Orders.java | ||
│ ├── OrderRepository.java | ||
│ ├── OrderService.java | ||
│ └── OrderView.java | ||
├── product | ||
│ ├── Product.java | ||
│ ├── ProductRepository.java | ||
│ ├── ProductService.java | ||
│ └── ProductView.java | ||
└── App.java | ||
``` | ||
|
||
## Class diagram | ||
|
||
 | ||
|
||
## Applicability | ||
|
||
Use Vertical Slice Architecture when | ||
|
||
* You want future modification ( new addition of features ). | ||
* You want to reduce the amount of mocking. | ||
* You want to make it more modular by feature. | ||
|
||
## Resources | ||
|
||
* [How to Implement Vertical Slice Architecture by Gary Woodfine](https://garywoodfine.com/implementing-vertical-slice-architecture/) | ||
* [youtube](https://www.youtube.com/watch?v=B1d95I7-zsw) | ||
* [medium](https://medium.com/sahibinden-technology/package-by-layer-vs-package-by-feature-7e89cde2ae3a) | ||
* [A reference application](https://github.com/sugan0tech/Event-Manager) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
125 changes: 125 additions & 0 deletions
125
vertical-slice-architecture/etc/vertical-slice-architecture.urm.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
@startuml | ||
package com.iluwatar.vertical-slice-architecture { | ||
|
||
!define ENTITY class | ||
!define SERVICE class | ||
!define REPOSITORY class | ||
!define VIEW class | ||
|
||
package Customer { | ||
ENTITY Customer { | ||
+id: int | ||
name: String | ||
email: String | ||
+getId(): int | ||
+getName(): String | ||
+getEmail(): String | ||
+builder(): Builder | ||
} | ||
|
||
SERVICE CustomerService { | ||
+createCustomer(name: String, email: String): Customer | ||
+getCustomerById(id: int): Customer | ||
+getAllCustomers(): List<Customer> | ||
} | ||
|
||
REPOSITORY CustomerRepository { | ||
+save(customer: Customer): Customer | ||
+findById(id: int): Optional<Customer> | ||
+findAll(): List<Customer> | ||
} | ||
|
||
|
||
VIEW CustomerView { | ||
-customerService: CustomerService | ||
-LOGGER: logger | ||
+render(): void | ||
} | ||
} | ||
|
||
package Product { | ||
ENTITY Product { | ||
+id: int | ||
name: String | ||
price: double | ||
+getId(): int | ||
+getName(): String | ||
+getPrice(): Double | ||
+builder(): Builder | ||
} | ||
|
||
SERVICE ProductService { | ||
+createProduct(name: String, price: double): Product | ||
+getProductById(id: int): Product | ||
+getAllProducts(): List<Product> | ||
} | ||
|
||
REPOSITORY ProductRepository { | ||
+save(product: Product): Product | ||
+findById(id: int): Optional<Product> | ||
+findAll(): List<Product> | ||
} | ||
|
||
|
||
VIEW ProductView { | ||
-productService: ProductService | ||
-LOGGER: logger | ||
+render(): void | ||
} | ||
} | ||
|
||
package Order { | ||
ENTITY Orders { | ||
+id: int | ||
customer: Customer | ||
product: Product | ||
+getId(): int | ||
+getCustomer(): Customer | ||
+getProduct(): Product | ||
+builder(): Builder | ||
} | ||
|
||
SERVICE OrderService { | ||
+createOrder(customer: Customer, product: Product): void | ||
+getOrderById(id: int): Orders | ||
+getOrdersByCustomer(customer: Customer): List<Orders> | ||
} | ||
|
||
REPOSITORY OrderRepository { | ||
+save(order: Orders): Orders | ||
+findById(id: int): Optional<Orders> | ||
+findByCustomer(customer: Customer): List<Orders> | ||
} | ||
|
||
|
||
VIEW OrderView { | ||
-orderService: OrderService | ||
-LOGGER: logger | ||
+render(customer: Customer): void | ||
+showAllOrders(orders: List<Orders>): void | ||
} | ||
} | ||
|
||
class App { | ||
+initializeData(): void | ||
+run(): void | ||
} | ||
|
||
Customer.Customer --> Customer.CustomerService | ||
Customer.CustomerService --> Customer.CustomerRepository | ||
Customer.CustomerService --> Customer.CustomerView | ||
|
||
Product.Product --> Product.ProductService | ||
Product.ProductService --> Product.ProductRepository | ||
Product.ProductService --> Product.ProductView | ||
|
||
Order.Orders --> Order.OrderService | ||
Order.OrderService --> Order.OrderRepository | ||
Order.OrderService --> Order.OrderView | ||
|
||
App --> Customer.CustomerService | ||
App --> Product.ProductService | ||
App --> Order.OrderService | ||
|
||
} | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
|
||
This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt). | ||
|
||
The MIT License | ||
Copyright © 2014-2022 Ilkka Seppälä | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
--> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>vertical-slice-architecture</artifactId> | ||
<parent> | ||
<groupId>com.iluwatar</groupId> | ||
<artifactId>java-design-patterns</artifactId> | ||
<version>1.26.0-SNAPSHOT</version> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>repackage</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<mainClass>com.iluwatar.vertical.slice.architecture.App</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
45 changes: 45 additions & 0 deletions
45
vertical-slice-architecture/src/main/java/com/iluwatar/verticalslicearchitecture/App.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt). | ||
* | ||
* The MIT License | ||
* Copyright © 2014-2022 Ilkka Seppälä | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
package com.iluwatar.verticalslicearchitecture; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
/** | ||
* This application is designed with a vertical slice architecture, organizing features such as | ||
* customer management, order processing, and product catalog in separate modules. Each feature encapsulates | ||
* its own set of components (Models, Services, Repository, and Controllers), promoting high cohesion | ||
* within each module and low coupling between them. This architecture allows for seamless integration of new | ||
* features and functionalities as the application evolves over time. | ||
*/ | ||
|
||
@SpringBootApplication | ||
public class App { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(App.class, args); | ||
} | ||
|
||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be possible to add a minimal code example here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of code examples, can it be project file structure?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think we can improvise a bit here. Whatever describes the pattern most effectively.