自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

淺談Struts2驗(yàn)證框架及用戶注冊(cè)

開發(fā) 后端
本文將對(duì)Struts2驗(yàn)證框架如何用戶注冊(cè)進(jìn)行講解,其中Struts2比起Struts1的驗(yàn)證框架來更加方便。

Struts2驗(yàn)證比起Struts1驗(yàn)證框架來,好用多了,使程序更加清晰易讀,充分利用了配置文件的作用,也算是解耦的表現(xiàn)吧.

核心代碼如下:

1.用戶注冊(cè)頁(yè)面register.jsp

  

    < ?xml:namespace prefix = s />< s:fielderror>< /s:fielderror>
    < /FONT>
   

    < !-- 讀取顯示提示信息 -->
    < TABLE>
    
     
       用戶名:
     
     
      
     
    
    
     
       密碼:
     
     
       < INPUT type=password name=user.password>
     
    

    
     
       確認(rèn)密碼:
     
     
       < INPUT type=password name=user.rePassword>
     
    

 

    


     
       年齡:
     
     
       < INPUT name=user.age>
     
    
    
     
       生日:
     
     
       < INPUT name=user.birthday>
     
    
    
     
      
     
    
   


  

2.注冊(cè)成功歡迎頁(yè)面welcome.jsp

congratulations!${user.userName} 

3.注冊(cè)處理action RegisterAction

package org.kingtoon.action;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.ServletActionContext;
import org.kingtoon.bean.User;
import com.opensymphony.xwork2.ActionSupport;

public class RegisterAction extends ActionSupport {

 

private User user;
@Override
public String execute() throws Exception {
   if(!(user.getPassword().equals(user.getRePassword()))){
      this.addFieldError("password", "請(qǐng)輸入相同的密碼");
      return "input";
   }
   else
   {
    HttpServletRequest request = ServletActionContext.getRequest ();
    request.setAttribute("user", user);
    return SUCCESS;
   }
 
}
public User getUser() {
   return user;
}
public void setUser(User user) {
   this.user = user;
}
}

4. 用戶Bean User.java

package org.kingtoon.bean;

import java.util.Date;

public class User {

private String userName;
private String password;
private String rePassword;
private Integer age;
private Date birthday;
public Integer getAge() {
   return age;
}
public void setAge(Integer age) {
   this.age = age;
}
public Date getBirthday() {
   return birthday;
}
public void setBirthday(Date birthday) {
   this.birthday = birthday;
}
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 String getUserName() {
   return userName;
}
public void setUserName(String userName) {
   this.userName = userName;
}

}

5.配置驗(yàn)證文件RegisterAction-validation.xml

< VALIDATORS>

   < !-- 驗(yàn)證字符串不能為空 -->
   < FIELD-VALIDATOR type="requiredstring">
    < !-- 去空格 -->
    < PARAM name="trim">true
    < !-- 錯(cuò)誤提示信息 -->
    < MESSAGE>用戶名不能為空
   < /FIELD-VALIDATOR>
 
   < !-- 驗(yàn)證字符串長(zhǎng)度 -->
   < FIELD-VALIDATOR type="stringlength">
    < PARAM name="minLength">2< /PARAM>
    20
    < MESSAGE>用戶名長(zhǎng)度應(yīng)在2到18個(gè)字符間
  


   < FIELD-VALIDATOR type="requiredstring">
    true
    < MESSAGE>密碼不能為空
   < /FIELD-VALIDATOR>
 
   < FIELD-VALIDATOR type="stringlength">
    < PARAM name="minLength">6< /PARAM>
    18
    密碼長(zhǎng)度應(yīng)在6到18個(gè)字符之間< /MESSAGE>
   < /FIELD-VALIDATOR>
< /FIELD>


   < FIELD-VALIDATOR type="int">
    < PARAM name="min">1
    < PARAM name="max">150
    < MESSAGE>年齡應(yīng)在1到150之間
   < /FIELD-VALIDATOR>

< !-- 驗(yàn)證字符串為日期類型 -->

   < FIELD-VALIDATOR type="date">
    < PARAM name="min">1900-01-01
    < PARAM name="max">2008-10-16< /PARAM>
    < MESSAGE>出生日期應(yīng)在1900-01-01到2008-10-16< /MESSAGE>
  
< /FIELD>
< /VALIDATORS>

6.struts2框架默認(rèn)加載的配置文件struts.xml

< STRUTS>
    < CONSTANT name="struts.custom.i18n.resources" value="messageResource">< /CONSTANT>
  
   
   
       < RESULT name="success">/welcome.jsp< /RESULT>
       < RESULT name="input">/register.jsp< /RESULT>
    < /ACTION>
    < /PACKAGE>
< /STRUTS>

 

7.web服務(wù)器啟動(dòng)時(shí)加載Struts 配置文件 web.xml

< ?XML:NAMESPACE PREFIX = [default] < web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

< filter>
   < filter-name>struts-cleanup
  
    org.apache.struts2.dispatcher.ActionContextCleanUp
  

< filter>
   < filter-name>struts2
  
    org.apache.struts2.dispatcher.FilterDispatcher
  

< filter-mapping>
   < filter-name>struts-cleanup< /filter-name>
   /*

< filter-mapping>
   < filter-name>struts2< /filter-name>
   < url-pattern>/*< /url-pattern>

< welcome-file-list>
   < welcome-file>register.jsp< /welcome-file>
< /welcome-file-list>
< /web-app>

至此,完畢.不過需要注意:

1.配置Struts2驗(yàn)證xml文檔的名字有講究:格式為:Action名字-validation.xml;

2.驗(yàn)證文檔里的中的type類型要和VO中的User屬性類型一致,否則會(huì)報(bào)類型轉(zhuǎn)換錯(cuò)誤

【編輯推薦】

  1. 在Eclipse中開發(fā)struts應(yīng)用程序
  2. 手把手教你在Eclipse中配置開發(fā)Struts
  3. Eclipse下開發(fā)struts完整解決亂碼問題
  4. Struts相關(guān)背景介紹
  5. 使用Easy Struts for Eclipse開發(fā)Struts
責(zé)任編輯:張燕妮 來源: 新浪博客
相關(guān)推薦

2009-06-25 15:37:12

Struts2教程Validation框

2011-03-30 09:03:57

struts2

2009-02-04 13:13:03

2009-06-04 09:41:50

struts2上傳文件

2009-06-04 11:08:32

struts2 val框架

2009-06-08 16:44:00

Struts2文件上傳

2009-06-25 15:33:12

Struts2教程使用validate驗(yàn)證數(shù)據(jù)

2009-06-05 10:48:01

struts2 ite功能

2009-07-29 09:54:34

struts2和str

2009-02-04 12:00:08

2012-08-30 09:48:02

Struts2Java

2009-06-25 15:11:28

Struts2教程Struts2程序

2009-06-04 08:01:25

Struts2攔截器原理

2009-06-04 08:45:01

Struts2下載

2009-06-08 16:44:00

2011-06-28 09:14:23

Struts 2WebWork

2009-06-05 10:43:29

struts2 checheckbox實(shí)例

2009-02-04 10:51:07

2009-07-03 09:35:57

Struts2 JSP

2011-11-25 13:01:16

JavaMVCstruts2
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)