91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Struts2攔截器 關于解決登錄的問題

發布時間:2020-10-17 23:30:51 來源:腳本之家 閱讀:171 作者:南城琉璃 欄目:編程語言

Struts2攔截器 關于解決登錄的問題

攔截器的工作原理如圖 攔截器是由每一個action請求(request)都包裝在一系列的攔截器的內部,通過redirectAction再一次發送請求。

攔截器可以在Action執行直線做相似的操作也可以在Action執行直后做回收操作。

我們可以讓每一個Action既可以將操作轉交給下面的攔截器,Action也可以直接退出操作返回客戶既定的畫面。

接下來我們該如何定義一個攔截器:

自定義一個攔截器如下:

1、實現Interceptor接口或者繼承AbstractInterceptor抽象類。

2、創建一個Struts.xml文件進行定義攔截器。

3、在需要使用的Action中引用上述定義的攔截器,為了方便也可將攔截器定義為默認的攔截器(<default-interceptor-ref name="myStack"/>),

這樣在不加特殊聲明的情況下所有的Action都被這個攔截器攔截<param name="excludeMethods">loginView,login</param>。

①Interceptor接口聲明三個方法:

public class LoginInterceptor implements Interceptor {

 private Map<String,Object> session = null;
 public void destroy() { }
 public void init() { }
 public String intercept(ActionInvocation actionInvocation) throws Exception {
 8     Object myAction = actionInvocation.getAction();
  if(myAction instanceof UserAction){
   System.out.println("你訪問的Action是UserAction,不要校驗Session,否則死循環");
   //放行
   return actionInvocation.invoke();
  }else{
   System.out.println("你訪問的Action是:"+myAction);
  }

  session = ActionContext.getContext().getSession();
  Object user = session.get("user");
  if (user!=null){
   return actionInvocation.invoke();
  }else{
   return "login";
  }

}

注:該方法可以不加:<param name="excludeMethods">loginView,login</param>

②讓它繼承 MethodFilterInterceptor:

public class LoginInterceptor extends MethodFilterInterceptor {
 private Map<String,Object> session = null;
 protected String doIntercept(ActionInvocation actionInvocation) throws Exception {
  /*
  Object myAction = actionInvocation.getAction();
  if(myAction instanceof UserAction){
   System.out.println("你訪問的Action是UserAction,不要校驗Session,否則死循環");
   //放行
   return actionInvocation.invoke();
  }else{
   System.out.println("你訪問的Action是:"+myAction);
  }
  */
  session = ActionContext.getContext().getSession();
  Object user = session.get("user");
  if (user!=null){
   return actionInvocation.invoke();
  }else{
   return "login";
  }
 }
}

③UserAction繼承ActionSupport 實現 ModelDriven<User>和SessionAware:

public class UserAction extends ActionSupport implements ModelDriven<User>,SessionAware{

 private Map<String,Object> session = null;
 private User user = null;
   //驅動模型
 public User getModel() {
  this.user = new User();
  return this.user;
 }

 public void setSession(Map<String, Object> map) {
  this.session = map;
 }

 public String loginView(){
  return "loginViewSuccess";
 }

 public String login(){
  if ("admin".equals(user.getUserName())&&"123456".equals(user.getUserPassword())){
   session.put("user",user);
   return this.SUCCESS;
  }else{
   return this.ERROR;
  }

 }
}

Struts.xml文件中:

<struts>
 <package name="myPackage" extends="struts-default">

  <interceptors>

   <interceptor name="loginInterceptor" class="com.nf.action.LoginInterceptor"></interceptor>
   <interceptor-stack name="myStack">
    <interceptor-ref name="loginInterceptor">
     <!--excludeMethods需要生效的話,自定義的攔截器,不能使用實現Interceptor接口,而是extends MethodFilterInterceptor-->
     <param name="excludeMethods">loginView,login</param><!--不用此行時 我們可以配合①使用攔截器-->
    </interceptor-ref>
    <interceptor-ref name="defaultStack"></interceptor-ref>
   </interceptor-stack>
  </interceptors>
  <!--配置一個默認攔截器,也就是所有的Action都必須使用-->
  <default-interceptor-ref name="myStack"/>
  <global-results>
   <result name="login" type="redirectAction">userAction_loginView</result>
  </global-results>
  <!--不寫method,默認就是execute-->
  <action name="indexAction" class="com.nf.action.IndexAction" method="execute">
   <result name="success">/WEB-INF/jsp/index.jsp</result>
   <!--
   <interceptor-ref name="myStack"></interceptor-ref>
   -->
   <!--注釋這里也可以放該代碼 只不過每一個action都要放比較麻煩 
   <interceptor-ref name="loginInterceptor"></interceptor-ref>
   <interceptor-ref name="defaultStack"></interceptor-ref>
   -->
  </action>

  <action name="otherFunctionAction" class="com.nf.action.OtherFunctionAction">
   <!--不寫name,默認就是success-->
   <result>/WEB-INF/jsp/otherFunction.jsp</result>
  </action>
  
  <action name="userAction_*" class="com.nf.action.UserAction" method="{1}">
   <result name="loginViewSuccess">/WEB-INF/jsp/loginView.jsp</result>
   <result name="error">/WEB-INF/jsp/error.jsp</result>
   <result name="success" type="redirectAction">indexAction</result>
   <allowed-methods>login,loginView</allowed-methods>
  </action>
 </package>
</struts>

其中,<param name="excludeMethods">loginView,login</param> 配置的過濾方法,意思是攔截器對其中的方法不起作用。在我這里,loginView是跳轉到登錄頁面的方法。

login 是驗證用戶名和密碼的方法,在其中會將通過驗證的用戶名放入session中。

總結:

1.在struts2 中,所有的攔截器都會繼承 Interceptor 這個接口。

2.如果我們沒有添加攔截器,struts2 會為我們添加默認攔截器。當然我們要是指定了攔截器,我們自己的攔截器就會取代默認的攔截器,

那么我們就不能享受默認攔截器提供的一些功能。所以,一般我會把默認攔截器也加上。

例如,在以上配置項中,action 里面再加上<interceptor-ref name="defaultStack"></interceptor-ref>

以上這篇Struts2攔截器 關于解決登錄的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

双流县| 天全县| 武清区| 宜丰县| 玉环县| 胶南市| 宁晋县| 佛教| 鄯善县| 五大连池市| 天台县| 呈贡县| 灵璧县| 枝江市| 平湖市| 万州区| 天峻县| 平陆县| 松江区| 招远市| 梅河口市| 磐安县| 无极县| 正蓝旗| 阳高县| 隆化县| 唐海县| 鹤庆县| 崇阳县| 新建县| 尼勒克县| 龙陵县| 常州市| 大方县| 固始县| 天气| 瓮安县| 康保县| 黄山市| 建始县| 江安县|