页面缓存:SimplePageCachingFilter

web.xml

<!-- 页面缓存配置,配合ehcache.xml中name为“SimplePageCachingFilter”(默认值)的缓存配置使用 -->
<filter>
<filter-name>PageEhCacheFilter</filter-name>
<filter-class>net.sf.ehcache.constructs.web.filter.SimplePageCachingFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>PageEhCacheFilter</filter-name>
<!-- 指定需要缓存页面的url -->
<url-pattern>/userHome</url-pattern>
</filter-mapping>

ehcache.xml(放在classpath路径下)

<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!--简单页面缓存 -->
<cache name="SimplePageCachingFilter"
maxElementsInMemory="10"
maxElementsOnDisk="10"
overflowToDisk="true"
diskSpoolBufferSizeMB="20"
timeToIdleSeconds="7"
timeToLiveSeconds="10"
memoryStoreEvictionPolicy="LFU"
/>
</ehcache>

SimpleCachingHeadersPageCachingFilter与使用SimplePageCachingFilter几乎是一样的。所不同的是前者在构建返回信息的时候会设置“Last-Modified、Expires、Cache-Control、ETag”这四个缓存头信息,如果在设置之前这些信息已经存在的话,那么它们将会被忽略,而直接使用SimpleCachingHeadersPageCachingFilter重新生成过的。



局部页面缓存:SimplePageFragmentCachingFilter

(页面局部片段,例如<jsp:include page="">包含的部分必要配置<dispatcher>INCLUDE</dispatcher>

web.xml

<!-- 页面缓存配置,配合ehcache.xml中name为“SimplePageFragmentCachingFilter”(默认值)的缓存配置使用 -->
<filter>
<filter-name>PageEhCacheFilter</filter-name>
<filter-class>net.sf.ehcache.constructs.web.filter.SimplePageFragmentCachingFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>PageEhCacheFilter</filter-name>
<url-pattern>/head.jsp</url-pattern>
<!-- 指定需要过滤的请求的发送类型 -->
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!--简单页面缓存 -->
<cache name="SimplePageFragmentCachingFilter"
maxElementsInMemory="10"
maxElementsOnDisk="10"
overflowToDisk="true"
diskSpoolBufferSizeMB="20"
timeToIdleSeconds="7"
timeToLiveSeconds="10"
memoryStoreEvictionPolicy="LFU"
/>
</ehcache>

我们include的jsp页面在filter中要指定<dispatcher>INCLUDE</dispatcher>,如果没有指定任何< dispatcher >元素,默认值是REQUEST就不会拦截了;如果指定了INCLUDE,则过滤器只过滤通过include过来的请求,而不会过滤直接从客户端过来的请求。

 
<dispatcher> 这个元素有四个可能的值:即REQUEST,FORWARD,INCLUDE和ERROR,可以在一个<filter-mapping>元素中加入任意数目的<dispatcher>,使得filter将会作用于直接从客户端过来的request,通过forward过来的request,通过include过来的request和通过<error-page>过来的request。如果没有指定任何<dispatcher>元素,默认值是REQUEST。
 
需要jar包:ehcache-web-2.0.4.jar

对象缓存:
方法一:net.sf.ehcache.CacheManager
public void test() {
net.sf.ehcache.CacheManager cacheManager = CacheManager.create();
net.sf.ehcache.Cache cache = cacheManager.getCache("SimplePageCachingFilter");
cache.put(new Element("key", "value")); //设置缓存
cache.get("key").getValue(); //查询缓存
}

方法二:org.springframework.cache.CacheManager(spring集成EhCache)


spring的缓存配置bean

<!-- spring的缓存配置 -->
<bean id="ehCacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:ehcache.xml" />
</bean>
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager" ref="ehCacheManagerFactory"/>
</bean>

使用缓存

 @Autowired
private org.springframework.cache.CacheManager cacheManager;
//private net.sf.ehcache.CacheManager //这里也可以用原生的CacheManager,注入时强制转换类型
public void test() {
org.springframework.cache.Cache cache = cacheManager.getCache("SimplePageCachingFilter");
cache.put("key", "value"); //设置缓存
cache.get("key").get(); //查询缓存
//输出 value
}

需要jar包:ehcache-core-2.4.3.jar


 

方法注解缓存


方法一:使用 org.springframework.cache.annotation.Cacheable注解缓存
 
spring的缓存配置bean
    <!-- spring的缓存配置 -->
<cache:annotation-driven cache-manager="cacheManager" /> <!-- 注解缓存必须 -->
<bean id="ehCacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:ehcache.xml" />
</bean>
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager" ref="ehCacheManagerFactory"/>
</bean>

使用注解缓存 Annotation

    import org.springframework.cache.annotation.Cacheable;
@Cacheable(value = "SimplePageCachingFilter")
//SimplePageCachingFilter为ehcache.xml上配的名字,不同的参数name使用的缓存不一样
public String getData(String name) {
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
System.out.println(name);
return format.format(new Date());
}

(更多spring缓存注解“CachePut更新缓存”、“CacheEvict清除缓存”的具体用法可自行百度)

 
方法二:使用ehcache-spring-annotations开启ehcache的注解功能
spring的缓存配置bean,注意下面cache-manager参数值与上面的区别
    命名空间 xmlns:ehcache="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring"
xsi:schemaLocation= http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring
http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.1.xsd <!-- spring的缓存配置 -->
<ehcache:annotation-driven cache-manager="ehCacheManagerFactory" /> <!-- 注解缓存必须 -->
<bean id="ehCacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:ehcache.xml" />
</bean>
使用注解缓存 Annotation
    import com.googlecode.ehcache.annotations.Cacheable;
@Cacheable(cacheName = "SimplePageCachingFilter")
//SimplePageCachingFilter为ehcache.xml上配的名字,不同的参数name使用的缓存不一样
public String getData(String name) {
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
System.out.println(name);
return format.format(new Date());
}

(更多注解“TriggersRemove清除缓存”的具体用法可自行百度)

 
需要jar包:ehcache-spring-annotations-1.2.0.jar、guava-r09.jar

EhCache缓存页面、局部页面和对象缓存的更多相关文章

  1. SharePoint 事件 7363:对象缓存:缓存使用的超级读者帐户没有足够的权限访问SharePoint数据库。

    转自MSND:http://technet.microsoft.com/zh-cn/library/ff758656(v=office.14) 对象缓存存储 Microsoft SharePoint ...

  2. SQLAlchemy 对象缓存和刷新

    SQLAlchemy 对象缓存和刷新 SQLAlchemy 带有对象缓存机制,在重复查询相同的对象时,直接先查询本地的缓存,而不需要从数据库加载数据. 在每个 model 对象的内部,SQLAlche ...

  3. ehcache 页面整体缓存和局部缓存

    页面缓存是否有必要?. 这样说吧,几乎所有的网站的首页都是访问率最高的,而首页上的数据来源又是非常广泛的,大多数来自不同的对象,而且有可能来自不同的db ,所以给首页做缓存是很必要的.那么主页的缓存策 ...

  4. ehcache实现页面整体缓存和页面局部缓存

    之前写过spring cache和ehcache的基本介绍和注解实现缓存管理,今天记录下web项目的页面缓存技术. 页面缓存是否有必要?. 这样说吧,几乎所有的网站的首页都是访问率最高的,而首页上的数 ...

  5. spring ehcache 页面、对象缓存

    一.Ehcache基本用法 CacheManager cacheManager = CacheManager.create(); // 或者 cacheManager = CacheManager.g ...

  6. Ehcache 整合Spring 使用页面、对象缓存

    Ehcache 整合Spring 使用页面.对象缓存 Ehcache在很多项目中都出现过,用法也比较简单.一 般的加些配置就可以了,而且Ehcache可以对页面.对象.数据进行缓存,同时支持集群/分布 ...

  7. (转)Ehcache 整合Spring 使用页面、对象缓存

    Ehcache在很多项目中都出现过,用法也比较简单.一般的加些配置就可以了,而且Ehcache可以对页面.对象.数据进行缓存,同时支持集群/分布式缓存.如果整合Spring.Hibernate也非常的 ...

  8. 在Spring中使用cache(EhCache的对象缓存和页面缓存)

    Spring框架从version3.1开始支持cache,并在version4.1版本中对cache功能进行了增强. spring cache 的关键原理就是 spring AOP,通过 spring ...

  9. Ehcache 整合Spring 使用页面、对象缓存(转载)

    Ehcache在很多项目中都出现过,用法也比较简单.一般的加些配置就可以了,而且Ehcache可以对页面.对象.数据进行缓存,同时支持集群/分布式缓存.如果整合Spring.Hibernate也非常的 ...

随机推荐

  1. kettle 递归循环

    var i = new Number(parent_job.getVariable(; parent_job.setVariable("i",i); true;

  2. 这篇文章关于两阶段提交和Paxos讲的很好

    http://blog.chinaunix.net/uid-16723279-id-3803058.html <两阶段提交协议与paxos投票算法> 点评:2PC绝对是CP的死党,是分布式 ...

  3. php模拟并发

    原文: http://blog.csdn.net/zhang_xinglong/article/details/16339867 ----------------------------------- ...

  4. Xcode6+Cocos2d-x真机调试 报错

    眼下真机调试时遇到下面问题. Undefined symbols for architecture arm64: "_png_get_io_ptr", referenced fro ...

  5. 利用 Gearman 实现系统错误报警功能

    Gearman 是什么? Gearman是一个用来把工作委派给其他机器.分布式的调用更适合做某项工作的机器.并发的做某项工作在多个调用间做负载均衡.或用来在调用其它语言的函数的系统. Gearman ...

  6. LNMP 架构 上传文件

    修改PHP上传文件大小限制的方法   修改PHP上传文件大小限制的方法1. 一般的文件上传,除非文件很小.就像一个5M的文件,很可能要超过一分钟才能上传完.但在php中,默认的该页最久执行时间为 30 ...

  7. 用BFS解决迷宫问题

    在一个n*n的矩阵里走,从原点(0,0)開始走到终点(n-1,n-1),仅仅能上下左右4个方向走.仅仅能在给定的矩阵里走,求最短步数. n*n是01矩阵,0代表该格子没有障碍.为1表示有障碍物. in ...

  8. luogu1447 能量采集

    题目大意 给出m,n,对于每一个整数x∈[1,m],y∈[1,n]都有一点(x,y).处理每个点所需要的能量为2*k+1,k为该点到原点经过的点的数量(不包括该点本身).求处理所有点所需要的能量和. ...

  9. AVL树、splay树(伸展树)和红黑树比较

    AVL树.splay树(伸展树)和红黑树比较 一.AVL树: 优点:查找.插入和删除,最坏复杂度均为O(logN).实现操作简单 如过是随机插入或者删除,其理论上可以得到O(logN)的复杂度,但是实 ...

  10. CharSequence源码分析

    CharSequence是一个接口,表示一个char值的可读序列,此接口为多种char序列提供统一的.只读的通道.既然是接口,就不能通过new来进行赋值,只能通过以下方式赋值: CharSequenc ...