在Spring Boot中,缓存是由Spring Cache抽象层提供的,默认情况下使用ConcurrentHashMap作为缓存存储。当缓存满了之后,可以通过以下几种方式来清理缓存:
@Autowired
private CacheManager cacheManager;
public void clearCache() {
cacheManager.getCacheNames().forEach(cacheName -> cacheManager.getCache(cacheName).clear());
}
@Autowired
private CacheManager cacheManager;
public void clearCache(String cacheName) {
Cache cache = cacheManager.getCache(cacheName);
if (cache != null) {
cache.clear();
}
}
如果缓存满了,可以在缓存注解中设置过期时间,让过期的缓存自动清理。
@Cacheable(value = "myCache", key = "#id", expireAfterWrite = 10, timeUnit = TimeUnit.MINUTES)
public MyObject getMyObject(String id) {
// ...
}
在某些特定的场景下,可以通过代码逻辑手动删除指定的缓存项。
@Autowired
private CacheManager cacheManager;
public void removeCacheItem(String cacheName, Object key) {
Cache cache = cacheManager.getCache(cacheName);
if (cache != null) {
cache.evict(key);
}
}
需要注意的是,以上的方法都是针对使用Spring Cache的简单情况。如果你使用的是其他的缓存框架,比如Ehcache、Redis等,那么清理缓存的方式可能会有所不同。