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

tomcat容器里报该异常怎么解决

2012-09-18 
tomcat容器里报该错误如何解决web.action.RyxxdjAction: Error setting expression fprovince with valu

tomcat容器里报该错误如何解决
web.action.RyxxdjAction: Error setting expression 'fprovince' with value '[Ljava
.lang.String;@135d780'
[framework] data:2011-08-22 20:19:53 grade:ERROR class:com.opensymphony.xwork
2.interceptor.ParametersInterceptor message:ParametersInterceptor - [setParamet
ers]: Unexpected Exception caught setting 'mprovince' on 'class com.wiseek.csrk.
web.action.RyxxdjAction: Error setting expression 'mprovince' with value '[Ljava
.lang.String;@1d7237b'
2011-8-22 20:20:28 com.fr.web.core.SessionDealWith closeSession
信息: Close Session: 1314015495937_3882
[framework] data:2011-08-22 20:21:55 grade:ERROR class:com.opensymphony.xwork
2.interceptor.ParametersInterceptor message:ParametersInterceptor - [setParamet
ers]: Unexpected Exception caught setting 'addprovince' on 'class com.wiseek.csr
k.web.action.RyxxdjAction: Error setting expression 'addprovince' with value '[L
java.lang.String;@1f51103'


[解决办法]
你需要写get set方法。
[解决办法]
我也明白了
<input type="text" name="t1">
<input type="text" name="t1">
比如上面两个id一样,页面改成这样
<input type="text" name="t1">
<input type="text" name="t2">

或者RyxxdjAction中,private String[] t1

public String[] getT1() {
return t1;
}

public void setT1(String[] t1) {
this.t1 = t1;
}
[解决办法]
7楼替我回答了,你试试看。
[解决办法]

探讨

addprovince为页面的字段,它对应的属性为:private String hd_province_id;就是说在action类里它定义的是字符串,需要改成数组类型对吧。

[解决办法]
明显的 是set值的方法 传入的参数错误啊
[解决办法]
数据不匹配..

热点排行