在Eclipse中建立第一个Struts2程序中我们建立了第一个struts程序,那么如何把登陆页面中的用户名传递到登录成功的页面中呢?
有三种方式,
1,使用默认的action的传递方式。
2,自定义一个vo,在action中使用这个vo
3,使用ModelDriven的方式。
下面分别叙述。
1,使用默认的action的传递方式。
action文件如下:
package struts2.login;
public class LoginAction {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String execute() {
System.out.println (LoginAction.class.hashCode());
if (username.equalsIgnoreCase("aaa") &&
password.equals("aaaaaa")) {
return "loginSuc";
}
else {
return "loginFail";
}
}
}
登陆成功的文件如下:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/struts-tags" prefix="s"%>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
欢迎您,<s:property value="username" />登录成功。
2,自定义一个vo,在action中使用这个vo
自定义vo文件名:LoginVO.java
文件内容:
package struts2.login;
public class LoginVO {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
在 Action文件中,要使用这个vo
文件内容:
package struts2.login;
public class LoginAction {
private LoginVO user = null;
public String execute() {
System.out.println (LoginAction.class.hashCode());
if (user.getUsername().equalsIgnoreCase("aaa") &&
user.getPassword().equals("aaaaaa")) {
return "loginSuc";
}
else {
return "loginFail";
}
}
public LoginVO getUser() {
return user;
}
public void setUser(LoginVO user) {
this.user = user;
}
}
登陆成功的文件如下:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/struts-tags" prefix="s"%>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
欢迎您,<s:property name="user.username">登录成功。
注意login文件的部分也要进行修改
文件内容如下:
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<title>login2</title>
<form action="login.action" method="post">
username:<input type="input" name="user.username"><br>
password:<input type="input" name="user.password"><br>
<input type="submit" value="登录">
</form>
3,使用 ModelDriven的方式。
同样也需要一个vo,这个vo和方法2中的一致,但是action中的写法就不一样了。
action文件内容如下:
package struts2.login;
import com.opensymphony.xwork2.ModelDriven;
public class LoginAction implements ModelDriven<LoginVO>{
@Override
public LoginVO getModel() {
// TODO Auto-generated method stub
return user;
}
private LoginVO user = new LoginVO();
public String execute() {
System.out.println (LoginAction.class.hashCode());
if (user.getUsername().equalsIgnoreCase("aaa") &&
user.getPassword().equals("aaaaaa")) {
return "loginSuc";
}
else {
return "loginFail";
}
}
}
而登陆成功的页面和login的文件则不需要追加 user的前缀,即和方法1的文件内容一样。
三种方法的总结:
第一种方法把form的值都放在action文件中,当form提交的项目很多的时候,action的内容将变得很多,很臃肿。项目少的时候可用。
第二种方法将form的值单独放在vo中,解决了 action文件臃肿的问题,同时使form和action分开,较好。但是需要在设置和获取的jsp页面上进行标识。
第三种方法在第二种方法的基础上,通过实现特定的接口,去掉了action中的set和get方法,同时去掉了jsp页面上的标识。使后台程序的logic更加清晰。
当我们进行一个应用的时候,根据从页面提交过来的应用的类型不同的时候,需要进行不同的action转发处理的时候,如何做呢,可以在struts中通过 result标签的设置来进行。
举例如:是管理者的用户登录的时候,执行完了认证需要的loginaction后,想进行admin权限 action的处理,并跳转到管理者的首页面。
而如果是普通用户登录后,执行完了认证需要的loginaction后,想进行普通用户的权限action的处理,并跳转到普通用户的首页面。
以下是一个实现示例:
首先是一个login.jsp文件,
在这个jsp文件中,我们提交admin或者user来设定权限。
文件内容:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/struts-tags" prefix="s"%>
<html>
<form action="login.action" method="post">
输入 admin,或者user<br>
role: <input type="input" name="role"><br>
<input type="submit" value="login">
</form>
</html>
然后是LoginAction.java文件
在这个文件中取得页面传过来的权限(role)
文件内容;
package struts2.login;
import com.opensymphony.xwork2.ActionSupport;
public class LoginAction extends ActionSupport{
private String role = "";
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role;
}
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
return SUCCESS;
}
}
然后是struts.xml文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="default" extends="struts-default">
<action name="login" class="struts2.login.LoginAction">
<result name="success" type="chain">${role}</result>
</action>
<action name="admin">
<result>admin.jsp</result>
</action>
<action name="user">
<result>user.jsp</result>
</action>
</package>
</struts>
在这个文件中,在login的action配置的地方,result的设定使用了 type="chain"的设定方式,将结果进行其它action的转发,而转发的action名字则为action中的变量值role。
然后在下面配置了两个forward的action,根据role分别转到不同的页面。
这里没有指定action的class,可以根据实际的应用进行添加。
结果页面;
文件名:admin.jsp
文件内容:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/struts-tags" prefix="s"%>
<html>
admin管理action成功。
</html>
文件名:user.jsp
文件内容:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="/struts-tags" prefix="s"%>
<html>
user的action成功。
</html>
好我们,执行以下,看到输入admin的时候,会跳转到admin.jsp页面
如图:
而输入user的时候,会跳转到user.jsp页面。
如图:
分享到:
相关推荐
在Struts2中,从请求取值是日常开发中的常见操作,有三种主要的方式可以实现这一功能。本篇将详细介绍这三种方法。 1. **Action上下文(ActionContext)** ActionContext是Struts2中一个关键的类,它提供了访问...
2. **表单验证**:注册页面通常需要进行表单验证,Struts2提供了多种验证方式,如基于注解的字段验证、基于XML的验证配置以及编程式验证。这些验证机制可以在用户输入数据时实时检查并反馈错误信息。 3. **结果类型...
三、Struts2架构 Struts2是基于WebWork2发展而来的,和Struts1一样也是MVC框架。但是虽然他们名字一样,但是原理差异很大。 Struts2之所以会产生是因为有以下几个优点: 1. 在软件设计方面Struts2没有像Struts1...
### Struts2 标签库详解 #### 一、引言 随着Web应用程序的日益复杂化,框架在软件开发中的作用越来越重要。Struts2作为Java Web开发领域中一款非常流行的MVC框架,以其易用性和灵活性而著称。本教程旨在通过一系列...
6. Struts2的跳转方式:Action-->jsp:forward,默认(dispatcher);redirect:type="redirect";Action-->Action:forward:type="chain";redirect:redirectAction,namespace,actionName。 7. Struts2中的拦截...
此配置表示Struts2将从`Mess.properties` 文件中加载资源字符串。开发者可以在该文件中定义各种消息和提示,例如: ```properties welcome.message=欢迎来到我们的网站! ``` ### 结果页面取值 在Struts2中,可以...
`开头的标签,如`<s:form>`和`<s:property>`,用于Struts2框架中的表单处理和显示模型数据。 **四、有效表达式** EL表达式可以包含文字、操作符、变量和函数调用。 1. **文字**:包括布尔值、整数、浮点数、字符串...
- 如果系统别是三位数字,JSP文件名可以省略第一个字母,如j001.jsp。 3. **JSP页面编码规范**: - 开头必须添加注释,描述相关信息。 - 第一行应包含`;charset=GBK"%>`以指定字符编码。 - 第二行应定义一个...
6. 创建表单(Form)类和动作(Action)类,处理电话号码格式和默认状态的设定,同时配置Struts、Hibernate和Spring的配置文件。 7. 设计并实现购车预订和预订信息查询的用户界面,参照给定的图-1和图-2。 8. 进行...
["星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期天"] as x> ${x_index + 1}.${x}, 星期四"><#break></#if> <p>We have these animals: <tr><th>Name<th>Price <tr><td>${...