EhCache 实例代码
EhcacheUtil,可以实例模式也可以单例模式,我都写好了,可以试下
package com.util; import net.sf.ehcache.Cache; import net.sf.ehcache.CacheException; import net.sf.ehcache.CacheManager; import net.sf.ehcache.Element; public class EhcacheUtil { private Cache cache; private void loadPrame() { /** * 单例模式 */ try { CacheManager.create("src/com/x/ehcache.xml"); cache = CacheManager.getInstance().getCache("a"); PrameUtil pUtil = new PrameUtil(); for (int i = 0; i < 6; i++) { cache.put(new Element(String.valueOf(i), pUtil.getPrame(String.valueOf(i)))); } } catch (CacheException e1) { e1.printStackTrace(); } // /** // * 实例 // */ // try { // CacheManager cm = CacheManager.create("src/com/x/ehcache.xml"); // // cache = new Cache("b", 5000, false, false, 5, 2); // // cm.addCache(cache); // // cache = cm.getCache("b"); // cache = cm.getCache("a"); // PrameUtil pUtil = new PrameUtil(); // for (int i = 1; i < 6; i++) { // cache.put(new Element(String.valueOf(i), pUtil.getPrame(String // .valueOf(i)))); // } // } catch (IllegalStateException e) { // e.printStackTrace(); // } catch (CacheException e) { // e.printStackTrace(); // } } public String getPrame(String key) { String value = ""; try { if (cache == null) { loadPrame(); } Element el = cache.get((String) key); if (el == null) { loadPrame(); el = cache.get((String) key); } if (el == null) { System.out.println("没有"); } value = el.getValue().toString(); } catch (IllegalStateException e) { e.printStackTrace(); } catch (CacheException e) { e.printStackTrace(); } return value; } }
PrameUtil,这个类是读取properties文件的,很简单,用到InputStream is = this.getClass().getClassLoader().getResourceAsStream("com/p/p.properties");
package com.util; import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class PrameUtil { public String getPrame(String key){ String value = ""; InputStream is = this.getClass().getClassLoader().getResourceAsStream("com/p/p.properties"); System.out.println(this.getClass().getClassLoader()); System.out.println(this.getClass().getClassLoader().getResourceAsStream("")); Properties p = new Properties(); try { p.load(is); value = p.getProperty(key); } catch (IOException e) { e.printStackTrace(); } return value; } }
测试类TestMain,更简单,都不好意思贴出来
public class TestMain { public static void main(String[] args) { EhcacheUtil eUtil = new EhcacheUtil(); String one = eUtil.getPrame("1"); System.out.println(one); } }
ehcache.xml文件内容如下,记得放好位置
<ehcache> <defaultCache maxElementsInMemory="1000" eternal="true" timeToIdleSeconds="3600" timeToLiveSeconds="3600" overflowToDisk="true" /> <cache name="a" maxElementsInMemory="1000" eternal="true" timeToIdleSeconds="3600" timeToLiveSeconds="3600" overflowToDisk="false" /> </ehcache>
转自:http://blog.csdn.net/liuxiaochen123/article/details/7823089
本文由用户 openkk 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!