Monday 2 January 2023

PlantUML: Hello world application

loginSuccessFlow.txt

@startuml
Client -> LoginServer: Enter user name
Client -> LoginServer: Enter password
Client -> LoginServer: Submit the form 
LoginServer -> ADServer: Check the credentials
ADServer -> LoginServer: Login Successful
LoginServer -> Client: Login Successful
@enduml

 

Execute below command to generate the sequence diagram.

java -jar plantuml.jar loginSuccessFlow.txt

 You can download plantuml.jar file from this location.

Upon successful command execution, you can see 'loginSuccessFlow.png' file.

 

loginSuccessFlow.png


 

 

Previous                                                    Next                                                    Home

No comments:

Post a Comment