Java + Spring Boot = A web API that returns info on characters from The Simpsons.
Try the endpoints yourself in the live demo!
GET
/api/characters
- Returns an array of all characters in the SQL DB.
GET
/api/characters/{id}
- Returns info on a Simpsons character given their GUID in the table.
SimpsonsCharacter = {
UUID guid,
String firstName,
String lastName,
String occupation,
Int age,
String voicedBy
}