Unexpected Exception caught setting

来源:互联网 发布:淘宝五皇冠店铺 编辑:程序博客网 时间:2024/05/17 02:24

......


三月 15, 2016 1:31:04 下午 com.opensymphony.xwork2.util.logging.commons.CommonsLogger error

严重: Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'confirmNewPwd' on 'class com.wlgj.xtjc.biz.user.action.UserAction: Error setting expression 'confirmNewPwd' with value ['123456789', ]
三月 15, 2016 1:31:04 下午 com.opensymphony.xwork2.util.logging.commons.CommonsLogger error
严重: Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'currentPwd' on 'class com.wlgj.xtjc.biz.user.action.UserAction: Error setting expression 'currentPwd' with value ['123', ]
三月 15, 2016 1:31:04 下午 com.opensymphony.xwork2.util.logging.commons.CommonsLogger error
严重: Developer Notification (set struts.devMode to false to disable this message):

Unexpected Exception caught setting 'newPwd' on 'class com.wlgj.xtjc.biz.user.action.UserAction: Error setting expression 'newPwd' with value ['123456', ]

................

 “当struts.devMode设置为true时,html表单数据中有和action属性匹配不上的参数名时(使用域对象时的非对象属性,或DrivenModel时,此model没有的属性时)就会报此提示。出现这个没什么影响,就是为了便于使用者调试。struts.devMode设置为false就没有了。可能它的log级别设置的容易让人误会。” Action中没有定义setter和getter方法时,使用request.getParameter("name")也可以取到;


   解决方法 1:struts.devMode设置为false  

          解决方法 2: 在Action中增加对应的setter方法

         解决方法 3:使用域对象或驱动模型时,给domain对应的增加对应的属性或者临时属性即可。


1 0
原创粉丝点击