|
@@ -84,6 +84,9 @@ public class SystemPropertyServiceImpl implements SystemPropertyService {
|
|
@Override
|
|
@Override
|
|
public Object get(String key) {
|
|
public Object get(String key) {
|
|
SysPropertyCacheBean sysPropertyCacheBean = systemPropertyCache.get(key);
|
|
SysPropertyCacheBean sysPropertyCacheBean = systemPropertyCache.get(key);
|
|
|
|
+ if (null == sysPropertyCacheBean) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
return sysPropertyCacheBean.getValue();
|
|
return sysPropertyCacheBean.getValue();
|
|
}
|
|
}
|
|
|
|
|