This is just a test SpringBoot application I created for experimentation (using Spring's Quickstart Guide). Displays Jackson mapping, SpringBoot Web and basic CRUD actions using RESTful APIs.
There is no database needed to run, but it also means that data stored in the application will be wiped after use (consider simple file storage, or just jump to using database management with H2 and Spring Data dependencies). Adding unit testing are TODO actions currently.
- Ensure Java 11 is installed.
- Best opened with IntelliJ.
- Select the
build.gradle
when opening to load the project as well as its configuration. - Also install and setup PostMan for API manual testing.
- Run the
MainApplication.java
. - Open up PostMan and run the various endpoints available (see here)
- Default setup will be
http://localhost:8080/...
- Default setup will be
- See screenshots for some sample outputs.
- You can also run the application with a debugger to see the workings of the service classes.
There are 4 notable endpoints present in this application.
Returns a greeting String with NAME
(default is World
). If NAME
exists in the application system, then it returns a more descriptive message.
Saves an Entity into the application. Entities are unique by NAME, hence if a new Entity with the same name is to be created, the application will reject it.
Format of JSON body:
{
"name": String name,
"age": INT age
}
Updates an Entity if it exists in the application currently. Only the balance of an Entity can be modified.
Format of JSON body:
{
"name": String name,
"balance": INT newBalance
}
Deletes an Entity if it exists in the application currently.
Format of JSON body:
{
"name": String name
}