struts的常用配置以及自定義攔截器

puyaCheer發表於2018-11-30
  Web.xml中的配置       
                                                                                                                                                            
      <filter>
        <filter-name>struts2</filter-name>
       <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
   </filter>
  <filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
      <dispatcher>REQUEST</dispatcher><!--  -->
      <dispatcher>FORWARD</dispatcher>

2、struts自定義攔截器:
第一步:建立一個了類整合Struts中的 MethodFilterInterceptor
整合這個類的好處:
1、只需要重寫一個方法
2、可以設定過濾哪個action不攔截
public class BOSLogininterceptor extends MethodFilterInterceptor {

@Override
protected String doIntercept(ActionInvocation invocation) throws Exception {

// User user = (User) ServletActionContext.getRequest().getSession().getAttribute(“user”);

	ActionProxy proxy = invocation.getProxy();
	String actionName = proxy.getActionName();  //請求的地址
	String namespace = proxy.getNamespace();   
	
	User user = BOSUtils.getUser();
	
	if(user == null) {
		//沒有登入,跳轉到登入的頁面
		
		return "login";
	}else {
		//登入了放行
		return invocation.invoke();
	}
	
	
	
}

}

第二步:在Spring的Application中配置自定義過濾器

	<!-- 配置登入的攔截器 -->
	<interceptors>
			<interceptor name="bosLogininterceptor" class="com.puya.bos.web.interceptor.BOSLogininterceptor">
				<!-- 放行不攔截的方法-->
				<param name="excludeMethods">login</param>
			</interceptor>
			<!-- 定義一個攔截器棧,將自己的定義的攔截器新增進去,同時也將struts2的預設的攔截器棧也新增進去 -->
			<interceptor-stack name="myStack">
				<interceptor-ref name="bosLogininterceptor"></interceptor-ref>
				<interceptor-ref name="defaultStack"></interceptor-ref>
			</interceptor-stack>
			
	</interceptors>
	<!-- 將自定義的攔截器棧設定成預設的攔截器棧 -->
	<default-interceptor-ref name="myStack"></default-interceptor-ref>
	
	<!-- 全域性結果集定義 -->
	<global-results>
		<result name="login">/login.jsp</result>
	</global-results>
	<!-- 需要進行許可權控制的頁面訪問 -->
	<action name="page_*_*">
		<result type="dispatcher">/WEB-INF/pages/{1}/{2}.jsp</result>
	</action>
	<!-- 採用註解建立物件,類名就是簡單類名的小寫   -->
	<action name="userAction_*" class="userActions" method="{1}">
		<result name="home">/index.jsp</result>
	</action>
	
</package>

相關文章