当前位置: 代码迷 >> Java Web开发 >> tomcat容器里报该异常怎么解决
  详细解决方案

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

热度:4101   发布时间:2013-02-25 21:14:42.0
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值的方法 传入的参数错误啊
------解决方案--------------------------------------------------------
数据不匹配..
  相关解决方案