Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d2fde8f99e | |||
| 4cb1df3a9f | |||
| 6b49e518e5 | |||
| d42fd1d9be | |||
| 777ca3a6a6 | |||
| d32005450f |
@@ -1,3 +0,0 @@
|
|||||||
/main/
|
|
||||||
/test/
|
|
||||||
/default/
|
|
||||||
@@ -189,8 +189,52 @@ public class KjbProperty {
|
|||||||
defaultValue = "10000"
|
defaultValue = "10000"
|
||||||
)
|
)
|
||||||
private Integer apiGwMetricPageSize = 10000;
|
private Integer apiGwMetricPageSize = 10000;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 제주은행 ums
|
||||||
|
@KjbPropertyValue(key = "djb.ums.was_ip_address")
|
||||||
|
private String umsWasIpAddress = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.was_mac_address")
|
||||||
|
private String umsWasMacAddress = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.swing.url")
|
||||||
|
private String umsSwingUrl = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.swing.client_id")
|
||||||
|
private String umsSwingClientId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.swing.client_secret")
|
||||||
|
private String umsSwingClientSecret = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.swing.tx_id")
|
||||||
|
private String umsSwingTxId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.swing.if_id")
|
||||||
|
private String umsSwingIfId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.sms.url")
|
||||||
|
private String umsSmsUrl = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.sms.tx_id")
|
||||||
|
private String umsSmsTxId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.sms.if_id")
|
||||||
|
private String umsSmsIfId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.email.url")
|
||||||
|
private String umsEmailUrl = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.email.tx_id")
|
||||||
|
private String umsEmailTxId = "";
|
||||||
|
|
||||||
|
@KjbPropertyValue(key = "djb.ums.email.if_id")
|
||||||
|
private String umsEmailIfId = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public String toJsonString(boolean isPretty) {
|
public String toJsonString(boolean isPretty) {
|
||||||
return isPretty
|
return isPretty
|
||||||
? new GsonBuilder().setPrettyPrinting().create().toJson(this)
|
? new GsonBuilder().setPrettyPrinting().create().toJson(this)
|
||||||
|
|||||||
@@ -17,11 +17,11 @@ public class KjbPropertyUtil {
|
|||||||
KjbPropertyValue anno = field.getAnnotation(KjbPropertyValue.class);
|
KjbPropertyValue anno = field.getAnnotation(KjbPropertyValue.class);
|
||||||
|
|
||||||
if (anno != null) {
|
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(anno.key());
|
||||||
sbDelete.append("';\n");
|
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 key = anno.key();
|
||||||
String defValue = anno.defaultValue();
|
String defValue = anno.defaultValue();
|
||||||
|
|||||||
Reference in New Issue
Block a user