This application is an insight of how a backend application works with spring boot. It consists of sending a request from a frontend application which will be treated and registered by the springboot application to the database.
- Springboot
- Docker
- MariaDB
- Adminer
- Postman
To generate a sringboot project: Spring initilizr
To install docker: docker
To use maria DB and adminer images: docker hub
You should run the docker compose in order to use maria DB with adminer.
To start docker compose: docker-compose up -d
To stop docker compose: docker-compose stop
You can open the adminer through your localhost:
localhost:8081
You should create a file application.properties where you're going to give a pieces of information about the datasource such as the url, the name.
You can have them on this link common application properties. You should looking for spring.datasource.


