From cb9aff3e56ac4f177878820581211ccaf687b198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EC=84=9D=20=EC=B5=9C?= Date: Tue, 16 Apr 2024 16:11:16 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=84=9C=EB=B2=84?= =?UTF-8?q?=20opensearch=20=EC=97=B0=EB=8F=99=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EC=99=84=EB=A3=8C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/dbnt/kcscbackend/search/service/SearchService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcsc-back-end/src/main/java/com/dbnt/kcscbackend/search/service/SearchService.java b/kcsc-back-end/src/main/java/com/dbnt/kcscbackend/search/service/SearchService.java index 77f661f..5e5795c 100644 --- a/kcsc-back-end/src/main/java/com/dbnt/kcscbackend/search/service/SearchService.java +++ b/kcsc-back-end/src/main/java/com/dbnt/kcscbackend/search/service/SearchService.java @@ -22,7 +22,7 @@ public class SearchService { public JSONArray searchRequest(String target, String text, Integer pageNum, Integer pageSize) { - String uri = "http://localhost:8090"; + String uri = "http://192.168.0.89:8090"; switch (target){ case "title": uri+="/doc-search/doc-title?";break; case "index": uri+="/doc-search/doc-index?";break;