this file will contain a guide how to build a rest api using spring boot
- generate a spring boot project using spring initializr
- Add spring web and spring data jpa. H2 database
- dev tools this will create a project which is ready to create a rest api and connect to a database like h2 or mySql.
When should you use which of the different rest api request methods ?
- create a spring boot controller
- you can receive input via spring boot path variable
- create a dao service and define all the get methods regarding a specific topic e.g. user which would be a userDaoService