bsalab / gitaction-lab-api

0 stars 0 forks source link

Spring boot application example

Total Unit Test Result Result Type Result
coverage
branches

The project is based on a small web service which uses the following technologies:

How to start the app

You should be able to start the example application by executing com.myapp.MyappServer, which starts a webserver on port 8080 (http://localhost:8080) and serves SwaggerUI where can inspect and try existing endpoints.

Useful commands

Useful curl commands to test. It can be tested with swagger also: http://localhost:8080/swagger-ui.html

curl -u user:password "http://localhost:8080/v1/cars"
curl -u user:password "http://localhost:8080/v1/drivers?onlineStatus=ONLINE"
curl -u user:password "http://localhost:8080/v1/drivers?onlineStatus=ONLINE&deleted=false"
curl -u user:password "http://localhost:8080/v1/drivers?onlineStatus=ONLINE&deleted=false&username=driver01"
curl -u user:password -X PUT "http://localhost:8080/v1/drivers/4/car/4545PWR"