首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2+spring时证验框架文件名的写法

2012-08-26 
struts2+spring时验证框架文件名的写法正确的写法是: ?????? 类名-Action名-validation.xml说明`1`类名不

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文件````

热点排行