mirror of
https://github.com/OtusTeam/Spring.git
synced 2026-05-30 10:50:42 +00:00
35 lines
626 B
HTTP
Executable File
35 lines
626 B
HTTP
Executable File
###
|
|
GET http://localhost:8080/hi?name=Ivan
|
|
Accept: */*
|
|
Content-Type: application/json
|
|
Cache-Control: no-cache
|
|
|
|
###
|
|
POST http://localhost:8080/response/Ivan
|
|
Accept: */*
|
|
Content-Type: application/json
|
|
Cache-Control: no-cache
|
|
|
|
{
|
|
"param1": "pa1",
|
|
"param2": "pa2"
|
|
}
|
|
|
|
###
|
|
GET http://localhost:8090/actuator/health
|
|
Accept: */*
|
|
Content-Type: application/json
|
|
Cache-Control: no-cache
|
|
|
|
###
|
|
GET http://localhost:8090/actuator/health/liveness
|
|
Accept: */*
|
|
Content-Type: application/json
|
|
Cache-Control: no-cache
|
|
|
|
###
|
|
GET http://localhost:8090/actuator/health/readiness
|
|
Accept: */*
|
|
Content-Type: application/json
|
|
Cache-Control: no-cache
|