refactor(仪表板): 隐藏组件测试

This commit is contained in:
wangjiahao
2024-05-20 16:20:55 +08:00
parent bbc6064045
commit 8e0510db50
7 changed files with 120 additions and 3 deletions

View File

@@ -93,7 +93,9 @@ public class DefaultCacheImpl implements DECacheService {
@Override
public void keyRemove(String cacheName, String key) {
Cache<Object, Object> cache = cacheManager.getCache(cacheName);
cache.remove(key);
if(cache != null){
cache.remove(key);
}
}
@PostConstruct