您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關spring中的攔截器怎么利用注解實現,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
類似用戶權限的需求,有些操作需要登錄,有些操作不需要,可以使用過濾器filter,但在此使用過濾器比較死板,如果用的話,就必須在配置文件里加上所有方法,而且 不好使用通配符。這里可以采用一種比較簡單靈活的方式,是采用spring 的 methodInterceptor攔截器完成的,并且是基于注解的。
@LoginRequired @RequestMapping(value = "/comment") public void comment(HttpServletRequest req, HttpServletResponse res) { // doSomething,,,,,,,, }
這里是在Spring mvc 的controller層的方法上攔截的,注意上面的@LoginRequired 是自定義的注解。這樣的話,該方法被攔截后,如果有該注解,則表明該 方法需要用戶登錄后才能執行某種操作,于是,我們可以判斷request里的session或者Cookie是否包含用戶已經登錄的身份,然后判斷是否執行該方法;如果沒有,則執行另一種操作。
下面是自定義注解的代碼:
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface LoginRequired { }
下面是自定義的方法攔截器,繼續自aop的MethodInterceptor
import javax.servlet.http.HttpServletRequest; import org.aopalliance.intercept.MethodInterceptor; import org.aopalliance.intercept.MethodInvocation; public class LoginRequiredInterceptor1 implements MethodInterceptor { @Override public Object invoke(MethodInvocation mi) throws Throwable { Object[] ars = mi.getArguments(); for(Object o :ars){ if(o instanceof HttpServletRequest){ System.out.println("------------this is a HttpServletRequest Parameter------------ "); } } // 判斷該方法是否加了@LoginRequired 注解 if(mi.getMethod().isAnnotationPresent(LoginRequired.class)){ System.out.println("----------this method is added @LoginRequired-------------------------"); } //執行被攔截的方法,切記,如果此方法不調用,則被攔截的方法不會被執行。 return mi.proceed(); } }
配置文件:
<bean id="springMethodInterceptor" class="com.qunar.wireless.ugc.interceptor.LoginRequiredInterceptor1" ></bean> <aop:config> <!--切入點--> <aop:pointcut id="loginPoint" expression="execution(public * com.qunar.wireless.ugc.controllor.web.*.*(..)) "/> <!--在該切入點使用自定義攔截器--> <aop:advisor pointcut-ref="loginPoint" advice-ref="springMethodInterceptor"/> </aop:config>
以上就是spring中的攔截器怎么利用注解實現,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。