struts2总结错误

1.数据类型的不对应,一般是,后台要求int而前端的zoneId等没找到返回null导致;或者是因为传给int类型的数据时String的也会发生这种错误。
No result defined for action com.ruangao.admin.web.action.ZoneAction and result input - action


2.url的地址没有找到,在struts2的配置中没有定义这个url。
There is no Action mapped for namespace /zone and action name de2lRule

3.配置的<package name="com.ruangao.admin.balance.application.account" extends="com.ruangao.admin" namespace="/balance/account">
package name不能重复。

4.There is no statement named .insert in this SqlMap.
说明没有加进SiteDeliveryCycle.xml中的命名空间,查了一下发现,
public void setSqlmapNamespace(String sqlmapNamespace) {

}
少了this.sqlmapNamespace = sqlmapNamespace;

你可能感兴趣的:(struts2)