sbt docker:publishLocal
cd docker && docker-compose up -d
curl localhost:8080/api/user/1
curl -X "GET" "localhost:8080/api/users"
curl -X "POST" "localhost:8080/api/user/select?gender=male" -H "Content-Type: application/json" -d '{"page": 1, "pageSize": 50, "sortBy": [{"columnName": "id", "direction":"ASC"}]}'
curl -X "POST" "localhost:8080/api/user" -H "Content-Type: application/json" -d '{"firstName": "Tom", "lastName": "Hanks", "gender": "male", "age": 55}'
curl -X "DELETE" "localhost:8080/api/user/1"
curl -X "POST" "localhost:8080/api/user/1" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"firstName": "Tom", "lastName": "Hanks", "gender": "male", "age": 55}'