創(chuàng)新互聯(lián)建站是專業(yè)的浦口網(wǎng)站建設(shè)公司,浦口接單;提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行浦口網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
攔截器的工作原理如圖 攔截器是由每一個(gè)action請求(request)都包裝在一系列的攔截器的內(nèi)部,通過redirectAction再一次發(fā)送請求。
攔截器可以在Action執(zhí)行直線做相似的操作也可以在Action執(zhí)行直后做回收操作。
我們可以讓每一個(gè)Action既可以將操作轉(zhuǎn)交給下面的攔截器,Action也可以直接退出操作返回客戶既定的畫面。
接下來我們該如何定義一個(gè)攔截器:
自定義一個(gè)攔截器如下:
1、實(shí)現(xiàn)Interceptor接口或者繼承AbstractInterceptor抽象類。
2、創(chuàng)建一個(gè)Struts.xml文件進(jìn)行定義攔截器。
3、在需要使用的Action中引用上述定義的攔截器,為了方便也可將攔截器定義為默認(rèn)的攔截器(<default-interceptor-ref name="myStack"/>),
這樣在不加特殊聲明的情況下所有的Action都被這個(gè)攔截器攔截<param name="excludeMethods">loginView,login</param>。
①Interceptor接口聲明三個(gè)方法:
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,不要校驗(yàn)Session,否則死循環(huán)"); //放行 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,不要校驗(yàn)Session,否則死循環(huán)"); //放行 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 實(shí)現(xiàn) ModelDriven<User>和SessionAware:
public class UserAction extends ActionSupport implements ModelDriven<User>,SessionAware{ private Map<String,Object> session = null; private User user = null; //驅(qū)動(dòng)模型 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需要生效的話,自定義的攔截器,不能使用實(shí)現(xiàn)Interceptor接口,而是extends MethodFilterInterceptor--> <param name="excludeMethods">loginView,login</param><!--不用此行時(shí) 我們可以配合①使用攔截器--> </interceptor-ref> <interceptor-ref name="defaultStack"></interceptor-ref> </interceptor-stack> </interceptors> <!--配置一個(gè)默認(rèn)攔截器,也就是所有的Action都必須使用--> <default-interceptor-ref name="myStack"/> <global-results> <result name="login" type="redirectAction">userAction_loginView</result> </global-results> <!--不寫method,默認(rèn)就是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> --> <!--注釋這里也可以放該代碼 只不過每一個(gè)action都要放比較麻煩 <interceptor-ref name="loginInterceptor"></interceptor-ref> <interceptor-ref name="defaultStack"></interceptor-ref> --> </action> <action name="otherFunctionAction" class="com.nf.action.OtherFunctionAction"> <!--不寫name,默認(rèn)就是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是跳轉(zhuǎn)到登錄頁面的方法。
login 是驗(yàn)證用戶名和密碼的方法,在其中會(huì)將通過驗(yàn)證的用戶名放入session中。
總結(jié):
1.在struts2 中,所有的攔截器都會(huì)繼承 Interceptor 這個(gè)接口。
2.如果我們沒有添加攔截器,struts2 會(huì)為我們添加默認(rèn)攔截器。當(dāng)然我們要是指定了攔截器,我們自己的攔截器就會(huì)取代默認(rèn)的攔截器,
那么我們就不能享受默認(rèn)攔截器提供的一些功能。所以,一般我會(huì)把默認(rèn)攔截器也加上。
例如,在以上配置項(xiàng)中,action 里面再加上<interceptor-ref name="defaultStack"></interceptor-ref>
以上這篇Struts2攔截器 關(guān)于解決登錄的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)站欄目:Struts2攔截器關(guān)于解決登錄的問題
鏈接分享:http://jinyejixie.com/article8/iiciip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、品牌網(wǎng)站設(shè)計(jì)、商城網(wǎng)站、微信公眾號(hào)、網(wǎng)站內(nèi)鏈、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)