KjbSsoModule property 리로딩 지원

This commit is contained in:
Rinjae
2025-11-28 15:57:20 +09:00
parent c0d1d88901
commit 031ba8562d
6 changed files with 155 additions and 0 deletions
@@ -58,6 +58,10 @@ public class KjbSsoModule {
public synchronized static KjbSsoModule getInstance(KjbProperty kjbProperty) {
if (instance == null) {
instance = new KjbSsoModule(kjbProperty);
} else {
if (!instance.prop.equals(kjbProperty)) {
instance.prop = kjbProperty;
}
}
return instance;
}