首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2-action-validate()应验

2012-09-04 
struts2-action-validate()验证package com.test.actionimport java.util.Dateimport com.opensymphony.

struts2-action-validate()验证

package com.test.action;import java.util.Date;import com.opensymphony.xwork2.ActionSupport;public class RegisterAction extends ActionSupport {private int age ;public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String execute() throws Exception{System.out.println("execute()") ;return SUCCESS ;}public void validate() {System.out.println("hello world") ;}}
?先调用set()方法,然后调用validate()方法,没用错误就调用execute()方法,否则不调用!

?

?

?

?

?

?

?

?

?

?

热点排行