首页 > 代码库 > IBatis手动刷新缓存

IBatis手动刷新缓存

IBatis使用cacheModel实现数据查询缓存

可以使用jsp手动清空缓存

<%@page import="com.ibatis.sqlmap.client.SqlMapClient"%>ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
SqlMapClient client
= (SqlMapClient) context.getBean("sqlMapClient");client.flushDataCache();

 

IBatis手动刷新缓存