GUID 생성 시 node 번호를 -Dinst.Name값을 이용하도록 변경

This commit is contained in:
curry772
2026-07-24 17:02:36 +09:00
parent 9a730dc0b7
commit 1b37fc5e1b
@@ -28,7 +28,7 @@ public final class GUIDGeneratorDJB {
static { static {
// 노드번호(2): 서버명 마지막 2자리, 없으면 "00" // 노드번호(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) { if (serverName.length() >= 2) {
NODE_NO = serverName.substring(serverName.length() - 2); NODE_NO = serverName.substring(serverName.length() - 2);
} else { } else {