Struts2Spring整合时验证出现重复报错的问题

现象:被check住的属性多次点击提交时重复叠加报出错误.
原因:Srping applicationContext.xml 的配置文件中bean的 scope 属性默认是"singleton" (每个Action只能有一个 对象,所以每次调用的都是以前的那个,所以message信息都保有以前的)
修改办法: Srping applicationContext.xml 的配置文件中bean的 scope 属性 scope="prototype"

你可能感兴趣的:(bean,xml,prototype)