注:本文系做者在看了浪曦的風中葉老師的struts2視頻的我的總結,但願能幫助廣大struts2的初學者。
第一步:
(這一步和其餘同樣,這裏從簡)依舊是新建一個web project,命名爲shuruxiaoayn,導入struts2必須的包。在src目錄下新建struts.xml,修改web.xml文件。
第二步:
將index.jsp更名爲regt.jsp(這個不是必須的,事實上也沒有必要,此處只是爲了便於稱呼)。reg.jap的代碼以下
html
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%> web
<% apache
String path = request.getContextPath(); 框架
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; jsp
%> ui
<%@ taglib prefix="s" uri="/struts-tags"%> this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> spa
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.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">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<s:form action="reg" >
<s:textfield name="username" label="username"></s:textfield>
<s:password name="password" label="password"></s:password>
<s:password name="repassword" label="repassword"></s:password>
<s:textfield name="age" label="age"></s:textfield>
<s:textfield name="birthday" label="birthday"></s:textfield>
<s:textfield name="graduation" label="graduation"></s:textfield>
<s:submit name="submit"></s:submit>
<s:reset name="reset"></s:reset>
</s:form>
</body>
</html>
第二步:action
在src目錄下新建新建包com.action 在其中新建一個RegAction.java文件
代碼以下
package com.action;
import java.util.Calendar;
import java.util.Date;
import com.opensymphony.xwork2.ActionSupport;
public class RegAction extends ActionSupport
{
private String username;
private String password;
private String repassword;
private int age;
private Date birthday;
private Date graduation;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getRepassword() {
return repassword;
}
public void setRepassword(String repassword) {
this.repassword = repassword;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public Date getGraduation() {
return graduation;
}
public void setGraduation(Date graduation) {
this.graduation = graduation;
}
public String execute() throws Exception
{
return SUCCESS;
}
public void validate()
{
System.out.println("已經調用了效驗方法");
if(null == username || username.length() <6 || username.length() >10)
{
this.addFieldError("username","username needs 6 to 10 chars");
}
if(null == password || password.length() <6 || password.length() >10)
{
this.addFieldError("password", "password needs 6 to 10 chars");
}
if(null == repassword || repassword.length() <6 || repassword.length() >10)
{
this.addFieldError("repassword", "repassword needs 6 to 10 chars");
}
if( null != password || null !=repassword)
{
if( !password.equals(repassword) )
{
this.addFieldError("repassword", "two pasword should be same");
}
}
if(age <=0 || age >150)
{
this.addFieldError("age", "age should between 1 to 149");
}
if(null == birthday )
{
this.addFieldError("birthday", "birthday required");
}
if(null == graduation)
{
this.addFieldError("graduation", "graduation required");
}
if(null != birthday && null != graduation)
{
Calendar c1 =Calendar.getInstance();
c1.setTime(birthday);
Calendar c2 = Calendar.getInstance();
c2.setTime(graduation);
if( !c1.before(c2))
{
this.addFieldError("birthday", "birthday should be after the graduation");
}
}
}
}
第四步:
在WebRoot目錄下新建另外一個視圖 success.jsp (此文件在這個效驗中基本沒有什麼做用)
第五步:修改struts.xml文件 代碼惹下
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="shuruxiaoyan" extends="struts-default">
<action name="reg" class="com.action.RegAction">
<result name="success">/success.jsp</result>
<result name="input">/reg.jsp</result>
</action>
</package>
</struts>
ok,到此,已經完成了最最基本的輸入校驗工做;
運行界面會是以下:
圖1
圖2
顯然。上面中圖2中有些信息不是咱們制定的,這是因爲輸入的數據沒有經過類型轉換形成的;
固然,若是想讓出錯提示變得更友好些,在進行以下操做:
第六步:配置屬性文件
在對應的action目錄中新建一個RegAction.properties文件 過程以下
1.新建這個文件
2.打開jdk安裝目錄下的native2ascii應用程序 路徑通常相似 做者的目錄是
O:\Program Files\Java\jdk1.6.0_10\bin\native2ascii
在這個環境中,輸入如下三行 分別按回車
invalid.fieldvalue.age=年齡格式有問題或類型轉化錯誤
invalid.fieldvalue.birthday=出生日期格式有問題或類型轉換錯誤
invalid.fieldvalue.graduation=畢業日期格式有問題或類型轉換錯誤
會出現三行對應的Unicode代碼 放入剛剛創建的屬性文件便可:
附圖
好了 如今是弄好了較簡單的輸入校驗了
預覽一下:
當填寫以下表單時:
完成後
struts2的類型轉換——Struts2第二講 | Struts2輸入校驗2(框架效驗)———stru ...
shuruxiaoyan發佈文件.rar (3.2 MB)
下載次數: 75
shuruxiaoyan開發文件.rar (3.2 MB)
下載次數: 65