*/
public class CacheableInterceptor implements Interceptor {
public void beforeActionExecute(HttpRequest request, ActionWrapper actionWrapper) throws Exception {
if (((CacheableAware) actionWrapper.getActionInstance()).shouldCache()) {
throw new BreakChainException();
}
}