java ehcache 辅助类_ehcache 缓存工具类

使用EhCache添加、移除缓存

import net.sf.ehcache.Cache;

import net.sf.ehcache.CacheManager;

import net.sf.ehcache.Element;

/**

* ehcache 缓存工具类

*

* cacheName在ehcache.xml中配置

*/

public class CacheUtils {

public static CacheManager manager = CacheManager.create();

public static String USER_CACHE = "userCache";

public static String SYS_CACHE = "sysCache";

public static String CODE_CACHE = "codeCache";

public static Object get(String cacheName, Object key) {

Cache cache = manager.getCache(cacheName);

if (cache != null) {

Element element = cache.get(key);

if (element != null) {

return element.getObjectValue();

}

}

return null;

}

public static void put(String cacheName, Object key, Object value) {

Cache cache = manager.getCache(cacheName);

if (cache != null) {

cache.put(new Element(key, value));

}

}

public static void putPhone( String phone, Object value) {

removePhone(phone);

CacheUtils.put(CacheUtils.CODE_CACHE,phone,value);

Cache cache = manager.getCache(CacheUtils.CODE_CACHE);

if (cache != null) {

cache.put(new Element(phone, value));

}

}

public static boolean removePhone( String phone) {

Cache cache = manager.getCache(CacheUtils.CODE_CACHE);

if (cache != null) {

return cache.remove(phone);

}

return false;

}

public static boolean remove(String cacheName, Object key) {

Cache cache = manager.getCache(cacheName);

if (cache != null) {

return cache.remove(key);

}

return false;

}

public static void main(String[] args) {

String key = "key";

String value = "hello";

CacheUtils.put(USER_CACHE, key, value);

System.out.println(CacheUtils.get(USER_CACHE, key));

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值