Skip to content

Instantly share code, notes, and snippets.

@jhcao23
Created June 13, 2023 16:09
Show Gist options
  • Save jhcao23/22ad13d1b9190b79f74dc748e3462b65 to your computer and use it in GitHub Desktop.
Save jhcao23/22ad13d1b9190b79f74dc748e3462b65 to your computer and use it in GitHub Desktop.
mermaid example
flowchart TD

subgraph Client
  Browser -->|HTTP Request| Dispatcher_Servlet
end

subgraph Spring MVC
  Dispatcher_Servlet --> HandlerMapping
  HandlerMapping --> Controller
  Controller -->|ModelAndView| ViewResolver
  ViewResolver --> View
  View -->|HTTP Response| Browser
end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment