-
Documentation https://plantuml.com/ko/sitemap-language-specification
-
Pdf Document https://plantuml.com/ko/guide
@startuml
skinparam responseMessageBelowArrow true
actor WebClient as client
participant ApiController as controller
participant DomainService as service
database DomainRepository as repository
participant AuthService as authService
boundary AuthApiAdapter as authApiService
client -> controller : GET /api/v1/test
controller -> authService : userValidationCheck()
authService -> authApiService : GET /api/v1/auth
authApiService --> authService : HTTP/1.1 200 OK
authService --> controller : true
controller -> service : process()
service -> repository : findById(1L)
repository --> service : response : TestEntity
service --> controller : response : TestDto
controller --> client : HTTP/1.1 200 OK
@enduml