驅逐攔截器


EvictInterceptor 可以根據 CacheName 註解自動清除快取。以下是範例程式碼:

@Before(EvictInterceptor.class)
@CacheName("blogList")
public void update() { getModel(Blog.class).update() ; redirect("blog.html");
}
上例中的用法會清除cacheName 為blogList 的快取數據,與其配合的CacheInterceptor 會自動更新cacheName 為blogList 的快取資料。