Skip to content

Instantly share code, notes, and snippets.

@kapresoft
Last active April 12, 2023 21:07
Show Gist options
  • Save kapresoft/3906af433fa7b8f2cf4c8a2041bf13e8 to your computer and use it in GitHub Desktop.
Save kapresoft/3906af433fa7b8f2cf4c8a2041bf13e8 to your computer and use it in GitHub Desktop.
Spring Boot Jackson and Lombok Best Practices - Account UML
@startuml
"Client App" -> "Account API": POST /account
"Account API" -> "Jackson ObjectMapper": readValue(byte[] src, Class<Account>)
"Account API" -> "Account API": createAccount(Account)
"Account API" -> "Jackson ObjectMapper": writeValue(OutputStream out, Account newAccount)
"Client App" <-- "Account API": Response (OutputStream)
@enduml