spring-reactive-demo
./mvnw clean package -DskipTests=true
./mvnw spring-boot:run
curl -v -L -X GET http://localhost:8080/api/users
curl -v -L -X GET http://localhost:8080/api/users/1
curl -v -L -X POST http://localhost:8080/api/users \
--header 'Content-Type: application/json' \
--data-raw '{
"userName": "scott",
"email": "scott@spring.io"
}'
curl -v -L -X PUT http://localhost:8080/api/users/1 \
--header 'Content-Type: application/json' \
--data-raw '{
"userName": "melon",
"email": "melon@fruit.io"
}'
curl -v -L -X DELETE http://localhost:8080/api/users/10 \
--header 'Content-Type: application/json'