com.ly.mybatis.mapperservice.holder.CacheHolder Maven / Gradle / Ivy
package com.ly.mybatis.mapperservice.holder;
@SuppressWarnings("unused")
public abstract class CacheHolder implements ICacheHolder {
private final ConcurrentReferenceHashMap cache = new ConcurrentReferenceHashMap<>();
@Override
public ConcurrentReferenceHashMap getCache() {
return cache;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy