configInterceptor(攔截器我)


此方法用來設定 JFinal  的全域攔截器,全域攔截器將攔截所有 action  請求,除非使用@Clear 在 Controller 中清除,以下程式碼配置了名為 AuthInterceptor 的攔截器。

public void configInterceptor(Interceptorsme)
 { me.add(newAuthInterceptor());
}



############################################################################################################################################ JFinal 的Interceptor 非常類似Struts2,但使用起來更方便,Interceptor 配置粒度分為Global、Class、Method 三個層次,其中以上程式碼配置粒度為全域。 Class 與 Method 等級的 Interceptor 配置將在後續章節中詳細介紹。 ##########