12:45:29,624 ERROR ParametersInterceptor:34 - Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'police.id' on 'class yh.position.action.center.PoliceUpdateAction: Error setting expression 'police.id' with value '[Ljava.lang.String;@7a0adf91'
12:45:29,670 ERROR Dispatcher:38 - Could not find action or result
/pservermy/police_update
No result defined for action yh.position.action.center.PoliceUpdateAction and result input
at com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:373)
確定是
<s:textfield name="police.id" />
報的錯。這個類型怎麼一致啊
那句是數據轉換異常導致的了,這是struts2的一個攔截器報的錯誤,當你的form中的數據有問題,它就會顯示攔截器的錯誤,並將錯誤信息顯示到對應action的name為input的result中。
你這個action沒有配置input所以,異常信息無法顯示而報後面的錯誤 Could not find action or result。
要不然你把數據類型改一致,可能你輸入的字符串值不能轉換成long而報錯的。