Merge pull request 'API config 개발서버 url 추가' (#13) from feat/demo-20251205 into develop
Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/13
This commit is contained in:
@@ -28,9 +28,8 @@ public class OpenApiConfig {
|
||||
)
|
||||
.servers(
|
||||
List.of(
|
||||
new Server().url("http://localhost:8080").description("로컬 개발 서버")
|
||||
|
||||
// , new Server().url("https://dev-api.kamco.com").description("개발 서버")
|
||||
new Server().url("http://localhost:8080").description("로컬 개발 서버"),
|
||||
new Server().url("https://kamco.dev-api.gs.dabeeo.com").description("개발 서버")
|
||||
// , new Server().url("https://api.kamco.com").description("운영 서버")
|
||||
))
|
||||
.components(new Components());
|
||||
|
||||
@@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@Tag(name = "분석결과", description = "추론관리 분석결과")
|
||||
@Tag(name = "추론관리 분석결과", description = "추론관리 분석결과")
|
||||
@RequestMapping("/api/inf/res")
|
||||
@RequiredArgsConstructor
|
||||
@RestController
|
||||
|
||||
Reference in New Issue
Block a user