struts2+spring时验证框架文件名的写法
正确的写法是: ?????? 类名-Action名-validation.xml
说明`
1`类名不是bean名不要写struts.xml中action标签中class指定的bean名.
2`action名为action标签的name指定的名字,不要写method指定的方法名.
如:`
struts.xml中
<action name="UpdateUser"method="update"><result name="success" type="redirectAction">UserManage</result><result name="input">/Manage/UserEdit.jsp</result></action>application.xml中<bean id="UserManageAction"><property name="userServices"><ref bean="UserServices" /></property></bean>?
那就在cn.abcd.action包下建立UserManage-UpdateUser-validation.xml文件````