基于J2EE的SSH整合应用及操作示例二(CRUD操作及配置)
2009-10-12 00:00:00 来源:WEB开发网CRUD是指在做计算处理时的增加(Create)、查询(Retrieve)(重新得到数据)、更新(Update)和删除(Delete)几个单词的首字母简写。主要被用在描述软件系统中数据库或者持久层的基本操作功能。
In computing, CRUD is an acronym for create, retrieve, update, and delete. It is used to refer to the basic functions of a database or persistence layer in a software system.
C reate new records
R etrieve existing records
U pdate existing records
D elete existing records.
在响应新增部门请求中,通过导入Struts 的配置文件(struts-config.xml) 来完成业务流程的部署。它把depAdd.jsp 和depAdd.do 连接起来。depAdd.jsp上产生客户请求,depAdd.do 则对请求产生响应、处理jsp页面上的数据。当点击depAdd.jsp 上的保存按钮
( <div style="float: right; padding: 10px 25px 0 0;">
<div class="right_button">
<a href="#" ><bean:message
key="go.add" /> </a>
</div>
</div>)
先检查页面数据的正确性,校验通过后将输入数据用Set方法存入到userinfoForm这个FormBean中。
function check()
{
var userName = document.userinfoForm.userName.value;
var password = document.userinfoForm.password.value;
var length = document.userinfoForm.password.value.length;
var repassword = document.userinfoForm.repassword.value;
var tel = document.userinfoForm.tel.value;
var department = document.userinfoForm.department.value;
if(userName=="")
{
alert('部门管理员姓名不能为空!')
return false;
}
if(password=="")
{
alert('密码不能为空!')
return false;
}
if(length<6||length>10)
{
alert('密码必须大于6个字符小于10个字符!')
return false;
}
if(repassword=="")
{
alert('重复密码不能为空!')
return false;
}
if(password!=repassword)
{
alert('密码输入不一致!')
return false;
}
if(tel!="")
{
No = "0123456789()+-"
for(i=0; i<tel.length; i++)
{
var Checkstr = tel.charAt(i);
if (No.indexOf(Checkstr)== -1)
{
alert("联系电话格式不正确!");
return false;
}
}
}
if(department=="")
{
alert('部门管理员所属部门不能为空!')
return false;
}
else
{
document.userinfoForm.submit();
}
}
更多精彩
赞助商链接