kotlin coroutine plus spring functional endpoints and reactive repositories example
Server: http://localhost:8080
GET("/employees", employeeHandler::findAll)
GET("/employees/{id}", employeeHandler::findById)
POST("/employees", employeeHandler::new)
PUT("/employees/{id}", employeeHandler::update)
DELETE("/employees/{id}", employeeHandler::delete)
git clone [email protected]:wojciech-zurek/kotlin-spring-functional-coroutine-example.git
cd kotlin-spring-functional-coroutine-example/
./gradlew bootRun
cd kotlin-spring-functional-coroutine-example/
./gradlew bootJar
java -jar build/libs/kotlin-spring-functional-coroutine-example-0.0.1-SNAPSHOT.jar r