File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
system-design/03-documentation Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change 1- = Solution: Java Server Request Flow - Sequence Diagram
2- :toc: left
3- :icons: font
4- :source-highlighter: highlightjs
5- :sectnums:
6- :kroki-server-url: https://kroki.io
7- :diagram-server: kroki
1+ # Solution: Java Server Request Flow - Sequence Diagram
82
9- == 🧵 Sequence Diagram
3+ ## 🧵 Sequence Diagram
104
115This diagram shows how a ` GET /books ` request flows through a typical layered Java server using Spring.
126
13- [ source,mermaid]
14- ....
7+ ``` mermaid
158sequenceDiagram
169 participant 🌐 Client
1710 participant 🚪 Controller
@@ -27,6 +20,6 @@ sequenceDiagram
2720 🗄️ Repository-->>⚙️ Service: List<Book>
2821 ⚙️ Service-->>🚪 Controller: List<Book>
2922 🚪 Controller-->>🌐 Client: JSON Response
30- ....
23+ ```
3124
3225
You can’t perform that action at this time.
0 commit comments