Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions request.http
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
########### local ###########
# 실행이 안될경우 application.yaml 로컬 포트확인
GET http://localhost:9320/api/hello

GET http://localhost:9320/api/simple
Expand All @@ -9,8 +10,6 @@ GET http://dev.simple-api.127.0.0.1.sslip.io/api/simple

GET http://dev.simple-api.127.0.0.1.sslip.io:9701/api/simple



########### ncp cluster ###########
GET http://localhost:9320/api/hello
Host: "test.osckorea.com"
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public List<Simple> listSimple() {

@GetMapping("/version")
public String version() {
log.info("version 1.0");
return "===== version 1.0";
log.info("version 1.3");
return "===== version 1.3";

}

Expand Down