@Before(EvictInterceptor.class)
@CacheName("blogList")
public void update() {
getModel(Blog.class).update();
redirect("blog.html");
}
文档上说 加上EvictInterceptor可以根据CacheName注解自动清除缓存 我加上了@Before(EvictInterceptor.class) 报错 请问这个拦截器EvictInterceptor.class是要我自己编写吗?
项目:JFinal