`
weigang.gao
  • 浏览: 468922 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

使用addFieldError方法和s:fieldError标签简单处理数据校验(5)

 
阅读更多
简单的数据验证:使用addFieldError方法和s:fieldError标签简单处理数据校验(一般不使用)

1.编写index.jsp

<?xml version="1.0" encoding="GB18030" ?>
<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>

<% 
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
<base href="<%=basePath %>"/>
<title>Insert title here</title>
</head>
<body>
使用addFieldError方法和s:fieldError标签简单处理数据校验
<a href="user/user!add?name=a" >添加用户</a>


	
</body>
</html>

 

2.编写action

package com.bjsxt.struts2.user.action;

import com.opensymphony.xwork2.ActionSupport;

public class UserAction extends ActionSupport {
	private String name;
	
	public String add() {
                //对name属性进行校验
		if(name == null || !name.equals("admin")) {
			this.addFieldError("name", "name is error");//调用addFieldError方法,将提示信息存放到value stack contents中
			this.addFieldError("name", "name is too long");//查看值栈中的内容,可以同一个name可以对应多个值
			return ERROR;
		} 
		return SUCCESS;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}

 

3.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>
    <constant name="struts.devMode" value="true" />
    <package name="user" extends="struts-default" namespace="/user">
        <action name="user" class="com.bjsxt.struts2.user.action.UserAction">
            <result name="error">/error.jsp</result>
        </action>
    </package>
</struts>

 

4.编写error.jsp,使用struts的标签获取错误信息

<?xml version="1.0" encoding="GB18030" ?>
<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
<%@taglib uri="/struts-tags" prefix="s" %><!--使用struts2的标签-->
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
<title>Insert title here</title>
</head>
<body>
	User Add Error!
        <!--提示信息会有默认的样式,不实用。可以从浏览器中查看源码-->
	<s:fielderror fieldName="name" theme="simple"/><!--获取value stack contents的数据-->
	<br />
	<s:property value="errors.name[0]"/><!--使用OGNL表达式获取value stack contents中的内容-->
	<s:debug></s:debug><!--使用这个标签可以查看value stack contents中的数据-->
</body>
</html>
分享到:
评论

相关推荐

    struts2中的输入校验

    重写validate方法校验将会产生两种错误信息:Field级别错误信息,Action级别的错误信息 Field级别错误信息就是将错误信息添加到fieldErrors,也就是将错误信息添加到addFieldError方法中。 Action级别的错误信息...

    默然说话struts2入门2-标签及ActionSupport.rar-part1

    入门级,无声视频,这一集比上一集感觉拍得好多了,找到一些窍门。 对Struts2的标签导入,错误信息显示,ActionSupport类的addFieldError()方法,validate()方法,execute()方法的使用进行了介绍。

    默然说话struts2入门2-标签及ActionSupport.rar-part2

    入门级,无声视频,这一集比上一集感觉拍得好多了,找到一些窍门。 对Struts2的标签导入,错误信息显示,ActionSupport类的addFieldError()方法,validate()方法,execute()方法的使用进行了介绍。

    用户增删查改验证系统

    MD5 md5 = new MD5(); u.setUsername(user.getUsername()); u.setPassword(md5.getMD5ofStr(user.getPassword())); u.setEmail(user.getEmail()); u.setPhone(user.getPhone()); u.setRole(user.getRole...

    struts_2.3.12GA_API文档(chm版本)

    概述 软件包 类 使用 树 已过时 索引 帮助 上一个类 下一个类 框架 无框架 所有类 摘要: 嵌套 | 字段 | 构造方法 | 方法 详细信息: 字段 | 构造方法 | 方法 ---------------------------------------------...

    cookie后台操作

    cookie的后台操作,这里是cookies的一个工具类 // 用户登录跳转 public String login() { if (cookieUtils.getCookie(request, userDao)) { return SUCCESS; } else return "login";...

Global site tag (gtag.js) - Google Analytics