JFinal在线手册
/ EvictInterceptor
EvictInterceptor
EvictInterceptor 可以根据 CacheName 注解自动清除缓存。以下是示例代码:
@Before(EvictInterceptor.class)
@CacheName("blogList")
public void update() { getModel(Blog.class).update(); redirect("blog.html");
}
@CacheName("blogList")
public void update() { getModel(Blog.class).update(); redirect("blog.html");
}