当前位置:K88软件开发文章中心网站服务器框架JFinal → 文章内容

6.4 EvictInterceptor

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-25 14:22:07

由 厦门小懒懒 创建, 最后一次修改 2016-10-06 EvictInterceptor 可以根据 CacheName 注解自动清除缓存。以下是示例代码:@Before(EvictInterceptor.class)@CacheName("blogList")public void update() { getModel(Blog.class).update(); redirect("blog.html");}上例中的用法将清除 cacheName 为 blogList 的缓存数据,与其配合的 CacheInterceptor 会 自动更新 cacheName 为 blogList 的缓存数据。

6.4 EvictInterceptor