Struts2实现简单的登录效果

Struts2实现简单的登录效果。

项目结构:
Struts2实现简单的登录效果_第1张图片
实现在login.jsp和success.jsp的登录跳转以及传递数据。

login.jsp提交表单到web.xml后附带了表单的action属性,由于将所有请求都定位到了struts2所以框架转到struts.xml中检索名称空间下名为test的action前往定义的类action.LoginAction路径下运行method属性定义的login()核对信息,并获取返回值,根据返回值跳转。

namespace属性:
namespace:可选属性。定义该包的命名空间。命名空间可以用来区别同名的Action。在一个命名空间内Action名必须是唯一的。但是不同的命名空间中可以用同名的Action。

如果某个包没有指定namespace,则该包使用默认的命名空间,默认的命名空间总是”“。

namespace决定了action的访问路径,默认为”“,可以接收所有路径的action,

namespace可以写为/,或者/xxx,或者/xxx/yyy,对应的action访问路径为/index.action,
/xxx/index.action,或者/xxx/yyy/index.action

namespace最好用模块来进行命名

Action配置中的各项默认值:
EG:

<package name="itcast" namespace="/test" extends="struts-default">
        <action name="helloworld" class="cn.itcast.action.HelloWorldAction" method="execute" >
    <result name="success">/WEB-INF/page/hello.jspresult>
        action>
  package> 

1>如果没有为action指定class,默认是ActionSupport。
2>如果没有为action指定method,默认执行action中的execute() 方法。
3>如果没有指定result的name属性,默认值为success。

值的简单传递:
比如在转到的界面中可以以${user.name}获取到用户名。

User类:

package model;
public class User {
    private String name;
    private String pass;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPass() {
        return pass;
    }
    public void setPass(String pass) {
        this.pass = pass;
    }

}

LoginAction:

package action;

import model.User;

import com.opensymphony.xwork2.ActionSupport;
//记得创建项目时继承ActionSupport

public class LoginAction extends ActionSupport {
    private User user;

    public User getUser() {
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public String login() {
        if (user.getName().equals("csdn") && user.getPass().equals("csdn")) {
            return SUCCESS;
        }
        return INPUT;
    }
}

struts.xml的配置:



<struts>
    <package name="login" namespace="/" extends="struts-default">
        <action name="test" class="action.LoginAction" method="login">
            <result name="success">/success.jspresult>
            <result name="input">/login.jspresult>
        action>
    package>
struts> 

web.xml的配置:

  <filter>
    <filter-name>struts2filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilterfilter-class>
  filter>
  <filter-mapping>
    <filter-name>struts2filter-name>
    /*
  filter-mapping>

login.jsp的表单传值:

    
"test" method="post"> type="text" name="user.name"> type="password" name="user.pass"> type="submit">

你可能感兴趣的:(Struts2实现简单的登录效果)