From 1b37fc5e1be11201babacf3e39bc66a9f45db319 Mon Sep 17 00:00:00 2001 From: curry772 Date: Fri, 24 Jul 2026 17:02:36 +0900 Subject: [PATCH] =?UTF-8?q?GUID=20=EC=83=9D=EC=84=B1=20=EC=8B=9C=20node=20?= =?UTF-8?q?=EB=B2=88=ED=98=B8=EB=A5=BC=20-Dinst.Name=EA=B0=92=EC=9D=84=20?= =?UTF-8?q?=EC=9D=B4=EC=9A=A9=ED=95=98=EB=8F=84=EB=A1=9D=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/eactive/eai/custom/message/GUIDGeneratorDJB.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eactive/eai/custom/message/GUIDGeneratorDJB.java b/src/main/java/com/eactive/eai/custom/message/GUIDGeneratorDJB.java index 68a2a7d..687dbb8 100644 --- a/src/main/java/com/eactive/eai/custom/message/GUIDGeneratorDJB.java +++ b/src/main/java/com/eactive/eai/custom/message/GUIDGeneratorDJB.java @@ -28,7 +28,7 @@ public final class GUIDGeneratorDJB { static { // 노드번호(2): 서버명 마지막 2자리, 없으면 "00" - String serverName = System.getProperty("server.key", ""); + String serverName = System.getProperty(com.eactive.eai.common.server.Keys.SERVER_KEY, ""); if (serverName.length() >= 2) { NODE_NO = serverName.substring(serverName.length() - 2); } else {