Spring Sleuth & OpenTracing demo
- GET http://localhost:8090/hystrix/notes
- GET http://localhost:8090/notes
- GET http://localhost:8090/notes/{id}
- DELETE http://localhost:8090/notes/{id}
- POST http://localhost:8090/ with body:
{
"noteMessage": "My Message"
}
- GET http://localhost:8080/notes
- GET http://localhost:8080/notes/{id}
- DELETE http://localhost:8080/notes/{id}
- POST http://localhost:8080/ with body:
{
"noteMessage": "My Message"
}
- build all projects
$ ./mvnw clean package
- start up:
$ docker-compose up --build