定义一个测试类
package struts2.example.action;
import java.util.Date;
public class HelloWorldAction {
private Date birthday;
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
System.out.print(birthday);
this.birthday = birthday;
}
public String execute() throws Exception{
return "success";
}
}
package struts2.example.action;
import j