如何在struts2中从验证中排除操作方法
我的 Action 类具有以下方法,
1.add
2.edit
3.loadEdit
4.remove
5.list
6.execute
在此我需要对添加和编辑应用验证。如何需要在 struts.xml 中配置。我遵循,
<action name="editComment" method="edit"
class="com.mmm.ehspreg2.web.action.product.CommentAction">
<result name="success">/jsp/propertyManager/loadList.jsp</result>
</action>
<action name="removeComment" method="remove"
class="com.mmm.ehspreg2.web.action.product.CommentAction">
<interceptor-ref name="validation">
<param name="excludeMethods">remove</param>
</interceptor-ref>
<result type="tiles">listComment</result>
<result type="tiles" name="input">listComment</result>
</action>
当我这样配置它时,删除操作方法不会被调用。我不明白这个问题。请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以在操作类中的方法初始化之前使用@SkipValidation
,例如
you can also use @SkipValidation before method initialization in action class
e.g.
只需在 exceptMethods 参数中列出您不希望通过验证框架运行的所有方法即可。由于您只想验证
add
和edit
,因此列出其他 4 个如下:您可以在 验证拦截器文档。
Simply list all the methods you don't want to be run through the validation framework in the excludeMethods parameter. Since you only want
add
andedit
validated, list the other 4 as follows:You can read more about it in the Validation Interceptor docs.