Struts2拦截方法的拦截器实战

一 视图

1 loginForm.jsp

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>登录页面</title>
</head>
<body>
<h3>用户登录</h3>
<s:form action="login">
    <s:textfield name="username" label="用户名"/>
    <s:password name="password" label="密码"/>
    <s:submit value="登录"/>
</s:form>
</body>
</html>

2 error.jsp

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>错误页面</title>
</head>
<body>
    您不能登录!
</body>
</html>

3 welcome.jsp

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>成功页面</title>
</head>
<body>
    您已经登录!
</body>
</html>

二 配置

<?xml version="1.0" encoding="GBK"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <!-- 通过常量配置该应用所使用的字符集-->
    <constant name="struts.i18n.encoding" value="GBK"/>
<!-- 配置本系统所使用的包 -->
<package name="lee" extends="struts-default">
    <!-- 应用所需使用的拦截器都在该元素下配置 -->
    <interceptors>
        <!-- 配置mySimple拦截器 -->
        <interceptor name="mySimple"
        class="org.crazyit.app.interceptor.MyFilterInterceptor">
            <!-- 为拦截器指定参数值 -->
            <param name="name">拦截方法的拦截器</param>
        </interceptor>
    </interceptors>

    <action name="login" class="org.crazyit.app.action.LoginAction">
        <result name="error">/WEB-INF/content/error.jsp</result>
        <result>/WEB-INF/content/welcome.jsp</result>
        <!-- 配置系统的默认拦截器 -->
        <interceptor-ref name="defaultStack"/>
        <!-- 应用自定义的mySimple拦截器 -->
        <interceptor-ref name="mySimple">
            <!-- 重新指定name属性的属性值 -->
            <param name="name">改名后的拦截方法过滤拦截器</param>
            <!-- 指定execute方法不需要被拦截 -->
            <param name="excludeMethods">execute</param>
        </interceptor-ref>
    </action>
    <action name="*">
        <result>/WEB-INF/content/{1}.jsp</result>
    </action>
</package>
</struts>

三 action

package org.crazyit.app.action;

import com.opensymphony.xwork2.ActionSupport;


public class LoginAction
    extends ActionSupport
{
    private String username;
    private String password;
    // username的setter和getter方法
    public void setUsername(String username)
    {
        this.username = username;
    }
    public String getUsername()
    {
        return username;
    }
    // password的setter和getter方法
    public void setPassword(String password)
    {
        this.password = password;
    }
    public String getPassword()
    {
        return password;
    }

    public String execute() throws Exception
    {
        System.out.println("进入execute方法执行体..........");
        Thread.sleep(1500);
        if (getUsername().equals("crazyit.org")
            && getPassword().equals("leegang") )
        {
            return SUCCESS;
        }
        return ERROR;
    }
}

四 拦截器

package org.crazyit.app.interceptor;

import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.*;
import java.util.*;

import org.crazyit.app.action.*;

// 拦截方法的拦截器,应该继承MethodFilterInterceptor抽象类
public class MyFilterInterceptor
    extends MethodFilterInterceptor
{
    // 简单拦截器的名字
    private String name;
    // 为该简单拦截器设置名字的setter方法
    public void setName(String name)
    {
        this.name = name;
    }
    // 重写doIntercept()方法,实现对Action的拦截逻辑
    public String doIntercept(ActionInvocation invocation)
        throws Exception
    {
        // 取得被拦截的Action实例
        LoginAction action = (LoginAction)invocation.getAction();
        // 打印执行开始的时间
        System.out.println(name + " 拦截器的动作---------"
            + "开始执行登录Action的时间为:" + new Date());
        // 取得开始执行Action的时间
        long start = System.currentTimeMillis();
        // 执行该拦截器的后一个拦截器,或者直接指定Action的被拦截方法
        String result = invocation.invoke();
        // 打印执行结束的时间
        System.out.println(name + " 拦截器的动作---------"
            + "执行完登录Action的时间为:" + new Date());
        long end = System.currentTimeMillis();
        // 打印执行该Action所花费的时间
        System.out.println(name + " 拦截器的动作---------"
            + "执行完该Action的时间为" + (end - start) + "毫秒");
        return result;
    }
}

五 测试

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值