From 1aa01638d44b0cb07422ebe115f1e2b33b8bd76c Mon Sep 17 00:00:00 2001 From: Rinjae Date: Tue, 13 Jan 2026 18:07:27 +0900 Subject: [PATCH] =?UTF-8?q?SSO=20=EB=8C=80=EC=9D=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../applicationContext-datasource-LOCAL.xml | 85 +++++++++++ .../WEB-INF/applicationContext-jdbc-LOCAL.xml | 136 ++++++++++++++++++ .../WEB-INF/properties/env.L.properties | 18 +++ http/obp.http | 5 +- kjb-docs/sso-enc.dat | 1 + .../rms/common/startup/AppInitializer.java | 7 +- 6 files changed, 246 insertions(+), 6 deletions(-) create mode 100644 WebContent/WEB-INF/applicationContext-datasource-LOCAL.xml create mode 100644 WebContent/WEB-INF/applicationContext-jdbc-LOCAL.xml create mode 100644 WebContent/WEB-INF/properties/env.L.properties create mode 100644 kjb-docs/sso-enc.dat diff --git a/WebContent/WEB-INF/applicationContext-datasource-LOCAL.xml b/WebContent/WEB-INF/applicationContext-datasource-LOCAL.xml new file mode 100644 index 0000000..0333af5 --- /dev/null +++ b/WebContent/WEB-INF/applicationContext-datasource-LOCAL.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/WebContent/WEB-INF/applicationContext-jdbc-LOCAL.xml b/WebContent/WEB-INF/applicationContext-jdbc-LOCAL.xml new file mode 100644 index 0000000..036af28 --- /dev/null +++ b/WebContent/WEB-INF/applicationContext-jdbc-LOCAL.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /WEB-INF/sqlmap-config/${db.vendor}/sqlMapConfigOfOnl.xml + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebContent/WEB-INF/properties/env.L.properties b/WebContent/WEB-INF/properties/env.L.properties new file mode 100644 index 0000000..bb74413 --- /dev/null +++ b/WebContent/WEB-INF/properties/env.L.properties @@ -0,0 +1,18 @@ +# mariadb/postgresql/oracle/db2 +db.vendor=oracle +# db.vendor specific dialect +# Examples +# - H2 : org.hibernate.dialect.H2Dialect +# - oracle10g : org.hibernate.dialect.Oracle10gDialect +# - MySQL8 : org.hibernate.dialect.MySQL8Dialect +# - MariaDB 10.3 : org.hibernate.dialect.MariaDB103Dialect +hibernate.dialect=org.hibernate.dialect.Oracle12cDialect + +# Priority of the was -D option +inst.Name=emsSvr96 +eai.tableowner=EMSADM +# P/T/D/S +eai.systemmode=L +eai.drmode=N +# black / blue / green / orange / yellow +theme.color=yellow diff --git a/http/obp.http b/http/obp.http index 28da692..38b4f0f 100644 --- a/http/obp.http +++ b/http/obp.http @@ -1,10 +1,11 @@ ### Retrieve Gateway Metrics After a Specific Time Slice -GET {{emsUrl}}/kjb/gw-metrics/after-timeslice/2025-12-02_01:00:00.json +# GET {{emsUrl}}/kjb/gw-metrics/after-timeslice/2025-12-02_01:00:00.json +GET {{emsUrl}}/kjb/gw-metrics/after-timeslice/2026-01-12_08:00:00.json ### Pretty Print -GET {{emsUrl}}/kjb/gw-metrics/after-timeslice/2025-12-02_01:00:00.json?pretty=true +GET {{emsUrl}}/kjb/gw-metrics/after-timeslice/2026-01-12_12:00:00.json?pretty=true ### API 목록 diff --git a/kjb-docs/sso-enc.dat b/kjb-docs/sso-enc.dat new file mode 100644 index 0000000..af8184a --- /dev/null +++ b/kjb-docs/sso-enc.dat @@ -0,0 +1 @@ +eJx9U92K00AYvc9TlLlSJMsk2iYVFKfJpJnd6UxIJq3tTdktZd2fdrW2gncV9hEWZKUsguAirNCrpRc+kYnvIPlPjBpykzPfnO+c830B9PDtkl4cn8zFyWwKGvLzBgASoMgTDvK8gWnYiHVxfoCZkeAJ0mcLfLqYT7rusGW+7gwWk+FLoezj5bG2v1qNUOvN+eP3s0f8yO89i2izZsQpWmUYWi1f0em76Xl+5HvYJWkntTmAsPUklmD2Ec3wGEAdmkpcLlZTIAFPIFeUqlSoNmWoyVBrQPg0fqOLPURohf7F2enR4fxsb3IxAxJgqJfShpvPwddteHMHJEkCXNjYNbEjDG4W0cSo5TNDEM6Kq0ACyBc2ZhYi1OA+EwkeCaC4i4xh/U54vQvu1+Gnb+HH7+HtByABgXtOFHzOGX0QRkpkcX+XU1rpHaMO90hNlYNcMe52WAIoWS23DIr7mFa81cx6AgnfK64mTrI+ReloNErFYtc16t6rxDB+FEVX84K6nIQyOY3sVnRFpkp8bR3mYscHPE335i4JteCoBEO5cUCYxQugMqaCvpnHHtmocBjYGiPH4YQJE4l/jKO+PpnbP7godWzOMEslQQXK7bbWlKGi67XwS2tUWqB8O6pzRQJzq0NcYSeYrkFVbSm1+P9DWs8l+nWdv06iGHpBGFxdhbfrX5e7n9tNsN0E9+sH4fUu/PLjIfgNAQA6dA== \ No newline at end of file diff --git a/src/main/java/com/eactive/eai/rms/common/startup/AppInitializer.java b/src/main/java/com/eactive/eai/rms/common/startup/AppInitializer.java index d410e5b..f5c9c62 100644 --- a/src/main/java/com/eactive/eai/rms/common/startup/AppInitializer.java +++ b/src/main/java/com/eactive/eai/rms/common/startup/AppInitializer.java @@ -1,12 +1,11 @@ package com.eactive.eai.rms.common.startup; -import org.apache.log4j.Logger; -import org.springframework.beans.factory.DisposableBean; -import org.springframework.beans.factory.InitializingBean; - import com.eactive.eai.rms.common.util.CommonConstants; import com.eactive.eai.rms.env.EmsConfig; import com.eactive.eai.rms.onl.common.service.AdapterStatusSendThreadPool; +import org.apache.log4j.Logger; +import org.springframework.beans.factory.DisposableBean; +import org.springframework.beans.factory.InitializingBean; public class AppInitializer implements InitializingBean, DisposableBean {