To see the full step by step guide here https://medium.com/@caopengau/vs-code-java-springboot-a-step-by-step-guide-beb61a4eb70c
Visit http://localhost:8080/ to see the helloworld response
Make post request to http://localhost:8080/ with below json body
{
"transactionId": "111",
"customers": [
{
"name": "Alert",
"age": 72
}
]
}
to see it transformed to
{
"transactionId": "111",
"tickets": [
{
"ticketType": "Senior",
"quantity": 1,
"totalCost": 17.5
}
],
"totalCost": 17.5
}
