- 浏览: 543209 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (339)
- JavaBase (27)
- J2EE (70)
- Database (22)
- Spring (3)
- struts1.x (6)
- struts2.x (16)
- Hibernate (10)
- IBatis (4)
- DWR (1)
- SSH (5)
- Oracle (31)
- HTML (12)
- javascript (11)
- Thinking (3)
- Workflow (5)
- Live (13)
- Linux (23)
- ExtJS (35)
- flex (10)
- php (3)
- Ant (10)
- ps (1)
- work (2)
- Test (1)
- Regular Expressions (2)
- HTTPServer (2)
- 方言 (1)
- 生活 (2)
- Sybase PowerDesigner (0)
最新评论
-
mikey_5:
非常感谢楼主的分享,<parameter propert ...
Check the output parameters (register output parameters failed) IN Ibatis -
影子_890314:
我现在也有这个错误,求解!
Check the output parameters (register output parameters failed) IN Ibatis -
358135071:
学习了,感谢分享!
使用hibernate 代替 mysql 中 limit 進行分頁 -
wjpiao:
你下面的“正确的映射”里面不是还是有number类型吗?
Check the output parameters (register output parameters failed) IN Ibatis -
zh_s_z:
很有用!弄一份吧!
Oracle数据库分区表操作方法
index.jsp
---------------------------------------------------------------------------------------
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>index page</title>
</head>
<body>
<font color="red">
<s:fielderror></s:fielderror>
</font>
<br/><br/>
doAdd method
<form action="control/manager/employee_doAdd" method="POST">
编号<input type="text" name="employee.empId"><br/>
姓名<input type="text" name="employee.empName"><br/>
手机<input type="text" name="employee.mobile"><br/>
生日<input type="text" name="employee.birthday"><br/>
<input type="submit" value="提交">
</form>
<br/><br/>
doUpdate method
<form action="control/manager/employee_doUpdate" method="POST">
编号<input type="text" name="employee.empId"><br/>
姓名<input type="text" name="employee.empName"><br/>
手机<input type="text" name="employee.mobile"><br/>
生日<input type="text" name="employee.birthday"><br/>
<input type="submit" value="提交">
</form>
</body>
</html>
EmployeeAction.java
-----------------------------------------------------------------------------------------------
package org.taink.struts.action;
import java.util.regex.Pattern;
import org.taink.entity.Employee;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
/**
* struts2 对action中的方法进行校验的分类:
* 1.采用手工编写代码方式实现 a.对action 中的所有方式进行校验,
* 即重写父类ActionSupport中的validate()方法 b.只对action 中指定方式进行校验,需要自定义校验方式.
*
* 2.基于XML 配置方式实现
*
* struts2 对action中的方法校验实现方式:
* 1.需要校验的action 需要继承ActionSupport类,对action中的所有方法进行校验,
* 就重写父类ActionSupport中的validate()方法 ;只对action 中指定方式进行校验,需要自定义校验方式.
* 2.在视图中引用:<%@ taglib uri="/struts-tags" prefix="s" %>标签,
* 并在页面中使用<s:fielderror></s:fielderror>标签
*
* struts2 对action中的方法校验流程:
* 1.类型转换器对请求参数执行类型转换,并将转换后的值赋给action 中的属性
* 2.如果在执行类型转换的过程中出现异常,系统会将异常信息保存到ActionContext,conversionError 拦截器将异常信息添加到fieldErrors里,不管类型转换是否出现异常,都会进入第3步.
* 3.系统通过反射技术先调用action 中的validateXxxx()方法,Xxxx为方法名.
* 4.再调用action中的validate()方法.
* 5.经过上面4步,如果系统中的fieldErrors存在错误信息,
* (即存放错误的集合的size 大于0,系统自动将请求转发至名称为input 的视图.如果fieldErrors 没有任何的错误信息,系统将执行action 中处理方法)
*
* @author taink
*
*/
public class EmployeeAction extends ActionSupport {
private static final long serialVersionUID = 6892944822771610653L;
private Employee employee;
public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public String doAdd() {
ActionContext.getContext().put("message", "添加成功");
return "success";
}
public String doUpdate() {
ActionContext.getContext().put("message", "更新成功");
return "success";
}
/*
* 1.此校验方法是自定义的 2.此校验方法只对当前的Action中的方法doAdd()方法进行校验
*/
public void validateDoAdd() {
if (null == this.employee.getEmpId()) {
this.addFieldError("employee.empId", "编号不能为空");
}
if (null == this.employee.getEmpName()
|| "".equals(this.employee.getEmpName())) {
this.addFieldError("employee.empName", "名称不能为空");
}
if (null == this.employee.getMobile()
|| "".equals(this.employee.getMobile())) {
this.addFieldError("employee.mobile", "手机不能为空");
} else {
// 使用正则表达式匹配手机号
if (!Pattern.compile("^1[358]\\d{9}$").matcher(
this.employee.getMobile()).matches()) {
this.addFieldError("employee.mobile", "手机格式不正确");
}
}
if (null == this.employee.getBirthday()) {
this.addFieldError("employee.birthday", "生日不能为空");
}
}
/*
* 1.此校验方法是自定义的 2.此校验方法只对当前的Action中的方法doUpdate()方法进行校验
*/
public void validateDoUpdate() {
if (null == this.employee.getEmpId()) {
this.addFieldError("employee.empId", "编号不能为空");
}
if (null == this.employee.getEmpName()
|| "".equals(this.employee.getEmpName())) {
this.addFieldError("employee.empName", "名称不能为空");
}
if (null == this.employee.getMobile()
|| "".equals(this.employee.getMobile())) {
this.addFieldError("employee.mobile", "手机不能为空");
} else {
if (!Pattern.compile("^1[358]\\d{9}$").matcher(
this.employee.getMobile()).matches()) {
this.addFieldError("employee.mobile", "手机格式不正确");
}
}
if (null == this.employee.getBirthday()) {
this.addFieldError("employee.birthday", "生日不能为空");
}
}
/*
* 1.此校验方法是对父类ActionSupport 的validate 进行重写
* 2.此校验方法对当前的Action中的所有方法都进行校验
*
*/
@Override
public void validate() {
if (null == this.employee.getEmpId()) {
this.addFieldError("employee.empId", "编号不能为空");
}
if (null == this.employee.getEmpName()
|| "".equals(this.employee.getEmpName())) {
this.addFieldError("employee.empName", "名称不能为空");
}
if (null == this.employee.getMobile()
|| "".equals(this.employee.getMobile())) {
this.addFieldError("employee.mobile", "手机不能为空");
} else {
if (!Pattern.compile("^1[358]\\d{9}$").matcher(
this.employee.getMobile()).matches()) {
this.addFieldError("employee.mobile", "手机格式不正确");
}
}
if (null == this.employee.getBirthday()) {
this.addFieldError("employee.birthday", "生日不能为空");
}
}
}
- struts2.zip (4.1 MB)
- 下载次数: 3
发表评论
-
struts2 添加或访问request,session ,application 的属性
2010-03-07 20:01 1085//1. 添加或访问request,s ... -
struts2 国际化--jsp 中直接访问某个资源文件
2010-01-08 19:09 2006struts2 为我们提供了<s:i18n& ... -
struts2 国际化--包范围资源文件
2010-01-08 18:36 1895在一个大型应用中,事个应用有大量的内容需要实现国际化,如 ... -
struts2 配置带占位符国际化资源(全局)
2010-01-08 16:38 37661.在src 目录 下添加语 ... -
struts2 配置国际化资源(全局)
2010-01-08 16:06 11861.在src 目录 下添加语 ... -
struts2 adtion 方法的校验(二)基于XML 配置
2010-01-08 14:39 1305EmployeeAction-employee_doAdd-v ... -
struts2 多文件上传
2010-01-07 22:25 902upload.jsp ---------------- ... -
struts2 单个文件上传
2010-01-07 22:17 903upload.jsp ------------------- ... -
struts2 adtion 中获得获得和设置application,request,session,response
2010-01-07 20:29 1882EmployeeAction.java ---------- ... -
struts2 自定义全局的类型转换器
2010-01-07 18:31 10701. 定义一个类继承自: com.opensymphony ... -
struts2 自定义局部的类型转换器
2010-01-07 18:19 11291. 定义一个类继承自: com.opensymphony.x ... -
struts2 adtion 中获得请求参数
2010-01-07 17:22 1332两种方式: 1.在action 中定义与请求参数同 ... -
struts2 configure
2010-01-07 16:10 1089struts2 adtion configure strut ... -
使用通配符的来调用action 中的不同方法
2010-01-07 16:08 1089struts.xml ------------------- ... -
struts2 常量设置以及属性的依赖注入
2010-01-07 15:29 1802<?xml version="1.0" ...
相关推荐
内容概要:本文详细介绍了基于STM32单片机的激光雕刻机控制系统的设计。系统包括硬件设计、软件设计和机械结构设计,主要功能有可调节激光功率大小、改变雕刻速率、手动定位、精确雕刻及切割。硬件部分包括STM32最小系统、步进电机驱动模块、激光发生器控制电路、人机交互电路和串口通信电路。软件部分涉及STM32CubeMX配置、G代码解析、步进电机控制、激光功率调节和手动定位功能的实现。 适合人群:对嵌入式系统和激光雕刻机感兴趣的工程师和技术人员。 使用场景及目标:① 适用于需要高精度激光雕刻的应用场合;② 为开发类似的激光雕刻控制系统提供设计参考。 阅读建议:本文提供了详细的硬件和软件设计方案,读者应结合实际应用场景进行理解,重点关注电路设计和代码实现。
白色简洁风格的前端网站模板下载.zip
HarmonyException如何解决.md
sdfsdfdsfsdfs222
html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+js学习代码 html+css+js学习代码html+css+js学习代码html+css+j
usbgps2.apk
白色简洁风格的家居建材网站模板下载.zip
EventEmitError解决办法.md
白色简洁风格的工艺品展览企业网站源码下载.zip
matlab调制解调 OFDM OTFS 16qam qpsk ldpc turbo在高斯白噪声,频率选择性衰落信道下的误比特率性能仿真,matlab代码 OFDM simulink 包括添加保护间隔(cp),信道均衡(ZF MMSE MRC MA LMSEE) 代码每行都有注释,适用于学习,附带仿真说明,完全不用担心看不懂
build(1).gradle
贴标飞达sw16全套技术资料100%好用.zip
其实这就是历年摘出来的
内容概要:本文针对大规模高分辨率遥感图像的处理问题,提出了一种基于图像分块的可扩展区域合并分割框架。传统的图像分块方法会导致分块边界上的伪影,影响最终结果。为解决这一问题,文中定义了稳定性边缘的概念,并给出了其数学表达,以确保分割结果与不分块时相同。此外,文章还介绍了一种高效的框架实现方法,用于在资源受限的设备上处理大型图像。 适合人群:从事遥感图像处理、计算机视觉及地理信息系统相关领域的研究人员和技术人员。 使用场景及目标:适用于需要处理大规模高分辨率遥感图像的应用场景,如环境监测、自然资源管理等。主要目标是提供一种能够高效处理大规模图像同时保持分割质量的方法。 其他说明:实验结果表明,所提出的算法不仅能够避免分块边界的伪影,而且能够在不同尺度下获得与不分块处理相同的分割结果。
白色简洁风格的手机图片展示博客网站模板.rar
白色简洁风格的外科医疗整站网站源码下载.zip
基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计),本资源中的源码都是经过本地编译过可运行的,评审分达到98分,资源项目的难度比较适中,内容都是经过助教老师审定过的能够满足学习、毕业设计、期末大作业和课程设计使用需求,如果有需要的话可以放心下载使用。 基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医疗领域问答系统实现源码+使用说明(毕业设计)基于python知识图谱医
在线式缠绕膜机自动覆膜缠绕机sw16全套技术资料100%好用.zip