7 Commits

Author SHA1 Message Date
eastargh ca8c7d9d30 ums관련 수정 2026-06-16 11:11:15 +09:00
eastargh d2fde8f99e 소스 정리 2026-06-15 13:17:50 +09:00
eastargh 4cb1df3a9f ums 관련 정리 2026-06-15 13:17:01 +09:00
eastargh 6b49e518e5 UMS관련 정리 2026-06-09 15:39:39 +09:00
eastargh d42fd1d9be 스윙챗 발송 2026-06-04 17:39:35 +09:00
eastargh 777ca3a6a6 제주은행 메신저 발송 2026-06-02 13:30:59 +09:00
eastargh d32005450f DB스키마 변경 EMSADM->EMSAPP 2026-06-01 17:34:15 +09:00
4 changed files with 7 additions and 18 deletions
-3
View File
@@ -1,3 +0,0 @@
/main/
/test/
/default/
+5 -11
View File
@@ -9,18 +9,12 @@ group = 'com.eactive.ext.kjb'
version = '1.0-SNAPSHOT'
def springVersion = "5.3.27"
def reposiliteUrl = "http://localhost:8080"
def nexusUrl = "https://nexus.eactive.synology.me:8090"
allprojects {
repositories {
maven {
url "${reposiliteUrl}/private"
allowInsecureProtocol = true
credentials {
username = reposiliteUser
password = reposilitePassword
}
}
repositories {
maven {
url "${nexusUrl}/repository/maven-public/"
allowInsecureProtocol = true
}
}
-2
View File
@@ -1,2 +0,0 @@
reposiliteUser=admin
reposilitePassword=BFoZsHrQU4lmJf9rruDdcsPgE0gltKfRdTjAx04IgvFhrd5q07QwMFZqeLHFv+5n
@@ -17,11 +17,11 @@ public class KjbPropertyUtil {
KjbPropertyValue anno = field.getAnnotation(KjbPropertyValue.class);
if (anno != null) {
sbDelete.append("DELETE FROM EMSADM.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '");
sbDelete.append("DELETE FROM EMSAPP.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '");
sbDelete.append(anno.key());
sbDelete.append("';\n");
sb.append("insert into EMSADM.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', ");
sb.append("insert into EMSAPP.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', ");
String key = anno.key();
String defValue = anno.defaultValue();