This is a simple Spring boot rest api application. Response will return a JSON that will contain candidates data which can be filtered by using a parameter (skill) via URL.
Java 11
Maven 3.3+
lombok
Docker CE
To start this application, clone this repo (https://github.com/DivitGitHub/spring-boot-simple-rest-api.git)
Build:
mvn install
And then run the Application class.
build image (root directory of project):
docker build -f Dockerfile -t docker-spring-boot-api .
Run container:
docker run -p 8888:8888 docker-spring-boot-api
I started this project for fun which showcase a bit of Springboot, Java 11, Docker, lombok and lambda.