Spring+ibatis+Oscache缓存管理精要
本文主要讲解在框架中的缓存管理,略去一些搭建框架过程,假定框架已建好。
在实际的开发运营过程中,有时需要对缓存进行手工刷新,下面从以下几点讲解:
1.JSP层,代码如下:
<%@ taglib uri="/WEB-INF/classes/oscache.tld" prefix="os"%>
<os:cache key="<%= news2NameKey %>" time="60" group="webproj,news,news2">
缓存内容
</os:cache>
说明:此处用到group属性,为的是对缓存归类,以便后续手工刷新某组缓存
在另一个jsp管理页刷新此组缓存:
<os:flush scope="application" group="webproj,news,news2" />
2.对ibatis中的sql数据缓存刷新
先从Spring的工厂中获得实例,建立辅助类SpringContextUtil.java
package com.yown.util;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ApplicationContext;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
public class SpringContextUtil implements ApplicationContextAware {
private static ApplicationContext applicationContext; //Spring应用上下文环境
/**
* 实现ApplicationContextAware接口的回调方法,设置上下文环境
* @param applicationContext
* @throws BeansException
*/
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
SpringContextUtil.applicationContext = applicationContext;
}
/**
* @return ApplicationContext
*/
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
/**
* 获取对象
* @param name
* @return Object 一个以所给名字注册的bean的实例
* @throws BeansException
*/
public static Object getBean(String name) throws BeansException {
return applicationContext.getBean(name);
}
/**
* 获取类型为requiredType的对象
* 如果bean不能被类型转换,相应的异常将会被抛出(BeanNotOfRequiredTypeException)
* @param name bean注册名
* @param requiredType 返回对象类型
* @return Object 返回requiredType类型对象
* @throws BeansException
*/
public static Object getBean(String name, Class requiredType) throws BeansException {
return applicationContext.getBean(name, requiredType);
}
/**
* 如果BeanFactory包含一个与所给名称匹配的bean定义,则返回true
* @param name
* @return boolean
*/
public static boolean containsBean(String name) {
return applicationContext.containsBean(name);
}
/**
* 判断以给定名字注册的bean定义是一个singleton还是一个prototype。
* 如果与给定名字相应的bean定义没有被找到,将会抛出一个异常(NoSuchBeanDefinitionException)
* @param name
* @return boolean
* @throws org.springframework.beans.factory.NoSuchBeanDefinitionException
*/
public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException {
return applicationContext.isSingleton(name);
}
/**
* @param name
* @return Class 注册对象的类型
* @throws NoSuchBeanDefinitionException
*/
public static Class getType(String name) throws NoSuchBeanDefinitionException {
return applicationContext.getType(name);
}
/**
* 如果给定的bean名字在bean定义中有别名,则返回这些别名
* @param name
* @return
* @throws NoSuchBeanDefinitionException
*/
public static String[] getAliases(String name) throws NoSuchBeanDefinitionException {
return applicationContext.getAliases(name);
}
}
然后在applicationContext.xml声明实例SpringContextUtil,配置如下:
<bean id="SpringContextUtil " class="com.yown.util.SpringContextUtil " singleton="true" />
<!-- ibatis数据持续层SQLMap配置 -->
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation" value="classpath:sql-map-config.xml"/>
</bean>
...
经过以上配置,就可以方便对sql中指定缓存进行刷新了,如下是sql.xml:
<sqlMap namespace="News">
<cacheModel id="fastNewsCache" type="OSCACHE">
<flushInterval minutes="7"/>
</cacheModel>
<select id="siteTop" parameterClass="java.util.HashMap" resultClass="com.yown.domain.News"
cacheModel="fastNewsCache">
select id,title from news
</select>
</sqlMap>
刷新指定缓存代码:
SqlMapClient sqlMapClient=(SqlMapClient)SpringContextUtil.getBean("sqlMapClient");
sqlMapClient.flushDataCache("News.fastNewsCache");
就是这样,呵呵!