首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

struts2中提交校验失败的有关问题

2012-11-23 
struts2中提交校验失败的问题struts2中提交校验失败的问题原因 对象没有get方法原来private SellerContact

struts2中提交校验失败的问题
struts2中提交校验失败的问题
原因 对象没有get方法
原来
private SellerContactBean sellerContactBean;
public void setSellerContactBean(SellerContactBean sellerContactBean) {
this.sellerContactBean = sellerContactBean;
}

增加
public SellerContactBean getSellerContactBean() {
return sellerContactBean;
}
问题解决.

热点排行