A simple spring boot service with a sqlite database.
The main goal of this project is to prove to that certain goals can be achieved using spring-boot, before converting the project in kotlin.
- Basic Crud Spring boot app in java and maven
- Added a non-standard sqlite DB... Mostly to prove that I can
- Added a rest service
- Used
gradle init
to convert to a gradle project - Tweak build.gradle to allow the project to actually build and run
In maven:
mvn -Dspring.profiles.active=sqlite spring-boot:run
In gradle
SPRING_PROFILES_ACTIVE=sqlite gradle clean bootRun