码迷,mamicode.com
首页 > 其他好文 > 详细

项目缓存

时间:2014-08-29 19:58:18      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   使用   java   io   ar   for   数据   

1.EHCacheInit.java类中写模块的初始化方法

   initModule(){

 System.out.println("***********"+Util.getNowDateStr()+"初始化模块——开始*************");

List<ModuleManager> list = new ArrayList<ModuleManager>();
try{
StringBuffer sb = new StringBuffer();
sb.append("SELECT * FROM t_modulemanager WHERE Status!=99 ORDER BY ModuleNumber");
String sql = sb.toString();
ILoadData moduleData=new LoadModule();
list=DBHelper.getList(sql,moduleData);
EHCacheHelper.putElement("moduleCache", "allModule", list);
for(ModuleManager module:list){
String ModuleName = module.getModuleName();
EHCacheHelper.putElement("moduleCache", ModuleName, module);
}
}catch(Exception e) {
Log.error(e);
System.out.println(e.getMessage());
System.out.println("***********"+Util.getNowDateStr()+"初始模块——出错*************");
}
System.out.println("***********"+Util.getNowDateStr()+"初始化模块——结束*************");

  }

 

 

2.在ehcache.xml中配置

<!-- 缓存配置
name:缓存名称。
maxElementsInMemory:缓存最大个数。
eternal:对象是否永久有效,一但设置了,timeout将不起作用。
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
overflowToDisk:当内存中对象数量达到maxElementsInMemory时,Ehcache将会对象写到磁盘中。
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
maxElementsOnDisk:硬盘最大缓存个数。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
clearOnFlush:内存数量最大时是否清除。
-->

<cache name="moduleCache" eternal="false" maxElementsInMemory="100" overflowToDisk="false" diskPersistent="false" timeToIdleSeconds="0" timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU" />

 

3.EHCacheAop.java

@Pointcut("execution (* com.cwises.service.system.module.ModuleServiceImp.update*(..))")
public void updateModule() {
}
@Pointcut("execution (* com.cwises.service.system.systemparam.ModuleServiceImp.add*(..))")
public void addModule() {
}
@After(value = "updateModule()")
public void addModuleAfter(JoinPoint point) throws Exception {
EHCacheInit.initModule();
}
@After(value = "addModule()")
public void updateModuleAfter(JoinPoint point) throws Exception {
EHCacheInit.initModule();
}

 

4.CacheInit.java

init(){

  EHCacheInit.initModule();

}

项目缓存

标签:style   color   os   使用   java   io   ar   for   数据   

原文地址:http://www.cnblogs.com/joycelishanhe/p/3945572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!