集成Ehcache

Jul 10, 2017 10:38:44 AM

作者:wendal

提醒

这一小节的是如何在应用层(service或者module或action类)中使用ehcache

准备工作

下载ehcache

你需要一个js文件

请务必阅读下面代码中的注释!! 分情况选用!!

  1. var ioc = {
  2. // 直接初始化Ehcache,默认找ehcache.xml文件哦
  3. cacheManager : {
  4. type : "net.sf.ehcache.CacheManager",
  5. factory : "net.sf.ehcache.CacheManager#create"
  6. }
  7. /* // 与shiro共享一个ehcache示例的方式
  8. cacheManager : {
  9. type : "net.sf.ehcache.CacheManager",
  10. factory : "net.sf.ehcache.CacheManager#getCacheManager",
  11. args : ["nutzbook"] // 对应shiro.ini中指定的ehcache.xml中定义的name
  12. }
  13. */
  14. };

把它放入dao.js同一个文件夹, 并确定在@IocBy中涵盖了这个js

怎么用

在你需要使用Ehcache的地方,加入

  1. @Inject CacheManager cacheManager;

so, 你已经得到CacheManager,怎么玩就随你了

本页面的文字允许在知识共享 署名-相同方式共享 3.0协议GNU自由文档许可证下修改和再使用。

原文: http://nutzam.com/core/integration/ehcache.html