This a coding challenge to get familiar with Spring Boot and its concepts. Therefore, I've chosen to implement the fizz buzz group word game.
- endpoint to get the fizz buzz result for given (numeric) input value
- endpoint to get all existing fizz buzz results
- JDK 23
- Spring Boot
- Spring Data
- H2 in memory database
- Swagger
git clone https://github.com/Kobe/fizz-buzz-service.git
cd fizz-buzz-service
# http://localhost:8080
./mvnw spring-boot:run
./mvnw clean verify
# http://localhost:8080/fizz-buzz/db
# JDBC URL "jdbc:h2:mem:fizzbuzz"
# user "fizz"
# password "buzz"
SELECT * FROM FIZZ_BUZZ_RESULT
fizz-buzz-service is licensed under the GPLv3+.