溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring aop action中驗(yàn)證用戶登錄狀態(tài)的實(shí)例代碼

發(fā)布時(shí)間:2020-09-01 18:41:19 來源:腳本之家 閱讀:142 作者:后臺(tái)菜狗子 欄目:編程語言

最近在學(xué)習(xí)ssh框架時(shí),照著網(wǎng)上做了一個(gè)商城系統(tǒng),之前在一些需要用戶存在的操作中,都是在每一個(gè)action中寫重復(fù)的代碼,這樣做現(xiàn)在想起來并不好,想起了spring的aop,于是想通過aop來給每個(gè)需要用戶操作的Action驗(yàn)證用戶登錄狀態(tài)。

想法是這樣的:

1. 用戶登錄時(shí)把userId放入session中

2. 通過spring 寫一個(gè)advice來獲取session中的userId,判斷用戶登錄狀態(tài),如果userId不符合,則拋出自定義異常

3. 通過struts中配置來捕獲異常,跳轉(zhuǎn)界面

以下是代碼: 

advice代碼:

public class IsUserLoginAdvice{

  public void isUserLogin() throws UserNotFoundException{
    // TODO Auto-generated method stub
    int id=0;
    Map sessionMap=ActionContext.getContext().getSession();
    System.out.println(sessionMap);
    try {
      //這里在一開始時(shí)userId是不存在的可能會(huì)拋出NullPointException,catch起來
      id=(int) sessionMap.get("userId");
      //在用戶注銷時(shí)我把session中的userId設(shè)為0
      if(id==0){
        throw new UserNotFoundException();
      }
    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      throw new UserNotFoundException();
    }
  }
}

struts.xml:

這里通過全局異常映射來處理這個(gè)異常:

  <package name="struts-global" namespace="/" extends="struts-default">

    <global-results>
      <result name="userNotFound">/web_resource/error_jsp/user_not_found.jsp
      </result>
    </global-results>

    <global-exception-mappings>
      <exception-mapping result="userNotFound" exception="com.lsj.market.exception.UserNotFoundException"></exception-mapping>
    </global-exception-mappings>
  </package>

全局異常有個(gè)name屬性,給那些想要共享該異常捕獲的package繼承,這樣就可以共享該異常捕獲行為:

<package name="com.lsj.market.action.user" extends="struts-global">

applicationContext.xml:

  <!-- aop設(shè)置 --> 
  <aop:config proxy-target-class="true">
    <aop:aspect ref="isUserLoginAdvice">
      <aop:pointcut id="isUserLoginPointcut" 
        expression="execution (* com.lsj.market.action..GetUser*.*(..)) 
          or execution (* com.lsj.market.action..*Update*Action*.*(..)) 
          or execution (* com.lsj.market.action..*Delete*Action*.*(..))
          or execution (* com.lsj.market.action..GetMarketCar*.*(..))
          or execution (* com.lsj.market.action..MarketCar*.*(..))
          or execution (* com.lsj.market.action..ToFlower*.*(..))
          or execution (* com.lsj.market.action..Flower*Add*.*(..))"/>
      <aop:before method="isUserLogin" pointcut-ref="isUserLoginPointcut"/>
    </aop:aspect>
  </aop:config>
  <!-- 聲明advice Bean -->
  <bean id="isUserLoginAdvice" class="com.lsj.market.aop.IsUserLoginAdvice"></bean>

其中pointcut可以通過or 來連接多個(gè)切入點(diǎn),這里有這么多切入點(diǎn)是因?yàn)榈谝淮巫?,沒想到用aop,各個(gè)Action的命名沒有考慮太多,導(dǎo)致現(xiàn)在必須配置這么多個(gè)切入點(diǎn)表達(dá)式- -!!!

還有一個(gè),如果struts交由spring管理時(shí),即struts.xml中配置了這一句:

<constant name="struts.objectFactory" value="spring" />

在生成代理類時(shí)會(huì)發(fā)生錯(cuò)誤,無法捕捉到拋出的異常,在網(wǎng)上查了后發(fā)現(xiàn)需要在struts.xml加入這一句,struts就可以捕捉到該異常了:

  <!-- 總是確保使用spring的自動(dòng)裝備策略 -->
  <constant name="struts.objectFactory.spring.autoWire.alwaysRespect" value="true" />

剛剛還想刪除這一句配置后把異常發(fā)上來,但是發(fā)現(xiàn)刪除后居然還可以運(yùn)行?!

算了還是寫上來,以后遇到這個(gè)問題,還可以看一下博客。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI