快速业务通道

基于J2EE的SSH整合应用及操作示例二(CRUD操作及配置) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20

基于J2EE的SSH整合应用及操作示例二(CRUD操作及配置)

时间:2011-01-23 gaochaojs

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="#" onclick="check();return false;"><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;                      }

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号