Struts对输入数据的校验
当我们在登录或者是注册时需要对用户输入的数据验证,以前都是浏览器传送数据到后台,后台对数据进行校验,如果有错误就带着错误信息转发带登录或者注册页面,
struts可以简便的对输入数据进行校验
首先我们先来建立一个input.jsp 用作登录页面 下面是源代码 js代码没有优化,若您感觉不爽的话希望您不吝赐教,感激不尽
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
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>My JSP 'input.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<style type="text/css">
*{
font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif;
}
.input{
border-width : 0px;
outline: none;
width:280px;
margin-left: 10px;
height:36px;
color:#888;
font-size:18px;
}
.lab{
display : block;
height : 36px;
width: 300px;
border: solid 1px #ccc;
position:relative;
}
#login{
display : block;
position: absolute;
width : 302px;
height : 38px;
background-color: #1C86EE;
margin-top : -20px;
text-align: center;
line-height: 36px;
size:21px;
color: #FFF;
font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif;
text-decoration: none;
}
#login:HOVER {
background: #1E90FF;
}
span{
position:absolute;
float:left;
line-height:40px;
left:12px;
color:#CDCDCD;
cursor:text;
font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif;
font-size: 18px;
}
</style>
<script type="text/javascript">
//第一个输入框获得焦点
function change1(input1){
document.onkeydown = function(){
if(input1.value==""){
document.getElementById("span1").style.display="block";
}else{
document.getElementById("span1").style.display="none";
}
};
document.onkeyup = function(){
if(input1.value==""){
document.getElementById("span1").style.display="block";
}else{
document.getElementById("span1").style.display="none";
}
};
}
function change2(input1){
document.onkeydown = function(){
if(input1.value==""){
document.getElementById("span2").style.display="block";
}else{
document.getElementById("span2").style.display="none";
}
};
document.onkeyup = function(){
if(input1.value==""){
document.getElementById("span2").style.display="block";
}else{
document.getElementById("span2").style.display="none";
}
};
}
</script>
</head>
<body>
<div style="width:300px;height:200px;margin:50px auto;">
<form action="" method="" id="" name="">
<label class="lab" id="lab1">
<span id="span1">用户名/邮箱账号/手机号码</span>
<input type="text" name="username" class="input" id="input1" onfocus="change1(this)" autocomplete="off"/>
</label><br />
<label class="lab" id="lab2">
<span id="span2">用户密码</span>
<input type="password" name="userpass" class="input" id="input2" onfocus="change2(this)"/>
</label><br />
</form>
<a href="#" id="login">登 录</a>
</div>
</body>
</html>
运行效果如下
下面我们就来建立action
package com.day06;
public class Validate {
private String username;
private String userpass;
public void setUsername(String username){
this.username = username;
}
public void setUserpass(String userpass){
this.userpass = userpass;
}
public String getUsername(){
return this.username;
}
public String getUserpass(){
return this.userpass;
}
public String login(){
return "success";
}
}
配置struts.xml
<package name="day06" namespace="/day06" extends="struts-default">
<action name="login" class="com.day06.Validate" method="login">
<result name="success">/success.jsp</result>
</action>
</package>
下面我们就来对输入进行校验
首先action类继承 ActionSupport 类重写 validate()方法
@Override
public void validate() {
if(username.trim().equals("")||username.trim()==null){
this.addFieldError("username", "用户名不能为空");
}
if(userpass.trim().equals("")||userpass.trim()==null){
this.addFieldError("userpass", "密码不能为空");
}
}
然后我们在struts,xml中加入input.jsp
<package name="day06" namespace="/day06" extends="struts-default">
<action name="login" class="com.day06.Validate" method="login">
<result name="success">/success.jsp</result>
<result name="input">/input.jsp</result>
</action>
</package>
Struts对指定的方法进行校验只需要改变validate()方法名 若要对execute()方法校验则 改为
validateExecute() 则只校验execute()方法。
Struts对输入数据的校验的更多相关文章
- Struts 2的数据校验
既然说到了Struts 2的数据校验,我们该怎么去实现呢?又是通过什么来实现呢? 就让我带着大家一起来走进Struts 2的数据校验吧. 首先我们会想到在Stuts 2的登录案例中我们定义了一个Act ...
- struts中的数据校验
1.struts中如何进行数据校验 在每一个Action类中,数据校验一般都写在业务方法中,比如login().register()等.struts提供了数据校验功能.每个继承自ActionSuppo ...
- struts中简单的校验
Struts中简单的校验 “计应134(实验班) 凌豪” Struts2校验简要说明:struts2中通常情况下,类型转换要在数据校验之前进行.类型转换其实也是基本的服务器端校验,合法数据必然可以通过 ...
- struts 简单前台用户名校验
一个jsp <?xml version="1.0" encoding="GB18030" ?> <%@ page language=" ...
- Struts 2 数据校验要用到的类和两种校验方式以及一些校验问题的解决
通过继承ActionSupport类来完成Action开发,ActionSupport类不仅对Action接口进行简单实现, 同时增加了验证.本地化等支持 .真实开发中自定义Action都需要继承该类 ...
- Struts2输入校验(编码方式)
struts2对用户输入数据的校验方法有两种方式,一种是通过编码的方式,另一种则是通过使用XML配置方式. 本章主要介绍struts2编码方式的输入校验.以下将结合一个实例程序进行说明. 代码结构: ...
- Struts2(五)数据校验
一.概述 在提交表单数据时,如果数据需要保存到数据库,空输入等可能会引发一些异常,为了避免引起用户的输入引起底层异常,通常在进行业务逻辑操作之前,先执行基本的数据校验. 下面通过两种方式来阐述Stru ...
- Struts2 更改校验配置文件位置
@(Java)[Struts|Interceptor] Struts2 更改校验配置文件位置 在Struts2中提供的拦截器校验ValidationInterceptor,该校验器中默认的配置文件位于 ...
- 轻量级Java EE企业应用实战(第4版):Struts 2+Spring 4+Hibernate整合开发(含CD光盘1张)
轻量级Java EE企业应用实战(第4版):Struts 2+Spring 4+Hibernate整合开发(含CD光盘1张)(国家级奖项获奖作品升级版,四版累计印刷27次发行量超10万册的轻量级Jav ...
随机推荐
- 动态网站加速,cdn义不容辞
"双十一"大战已经落下帷幕,各大电商纷纷拿出了亮眼的成绩单,但在这些成绩单的背后,CDN加速技术是功不可没的.随着互联网的发展,电商.视频直播等网站的火热,以及各个云加速平台的流行 ...
- 相对协议-关于src里//开头的知识
"相对协议",也就是链接以 // 开头,前面去掉了 http: 或 https: 字样, 这样做的好处是浏览器能够根据你的网站所采用的协议来自动加载 CDN 上托管的文件!
- LED :制作一个追逐序列(霹雳游侠)
; ,,}; ; void setup() { ; led<NbrLeds; led++){ pinMode(ledPins[led], OUTPUT); } } void loop() { ; ...
- js在关闭页面前弹出确认提示【转载】
最近项目中出现个bug,就是导出数据后,会提示确认导航,其实实际需求并不需要这个提示,可能是之前遗留的问题.查了下资料是在触发了onbeforeunload事件,那么剩下的就是代码组织问题了. 众所周 ...
- linux xfce4普通用户 mount usb提示: Not authorized to perform operation
问题:xfce4下,USB 硬盘能自动挂载并显示,但是普通用户操作时,提示:Not authorized to perform operation. 时间:20160928 os:gentoo + x ...
- CodeForces 659F Polycarp and Hay
并查集,$dfs$. 从大的数字往里加,每加一个数字合并一下连通块,判断连通块内数字个数是否够,以及k能不能被当前加入的数字整除.然后$dfs$一下构造答案. #pragma comment(link ...
- Pelican主题配置:elegant
简介 elegant是Mac风格的优秀主题,简单,专注文章本身. A responsive, minimal, and stylish theme for Pelican:https://github ...
- ios开发的系统兼容性问题解决
对于系统中过时的方法或者是为了向下兼容兼容不同的版本使用最新的方法都要判断当前的系统版本号,在进行方法的调用 1.系统方法过时的注释 ````objc - (void)imagePickerContr ...
- 如何取消input记忆功能
默认情况下,input会有这个记忆功能,如果不想让它记忆,可以在input上加上autocomplete="off"即可.
- Android编程获取手机的IMEI
手机在生产时,每部手机均有一个唯一的标识(ID),国际上采用国际移动设备身份码(IMEI, International Mobile Equipment Identity).IMEI是由15位数字组成 ...