Skip to content
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

#2373 feature add: Vertical Slice Architecture. #2828

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added more context with example
  • Loading branch information
sugan0tech committed Oct 3, 2023
commit c189ae90d4e231c9c5375947eea8bd66079a784d
1 change: 1 addition & 0 deletions vertical-slice-architecture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ Use Vertical Slice Architecture when
* [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)
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
* main application.
* Main application.
* The main objective of this code sample is for you to have a look at how the view, entity, repository and Service are
* organized.
* No matter what application you are building Layer by Feature will always give the upper hand of better
* maintainability.
*/

@SpringBootApplication
Expand Down