如何在struts2中排除action方法frm验证

发布于 2024-09-27 06:07:36 字数 107 浏览 0 评论 0原文

如何从struts2中的验证中排除操作方法...例如,我想对具有两个字段的一个操作登录进行验证,而同一操作类中的其他操作方法说带有归档消息的测试方法......我该怎么做? ?使用一个 xml 文件?

How to exclude action methods from validation in struts2 ... for example i wann do validation for one action login with two fileds and other action method in same action class say test methode with filed message..... how can i do it?? using one xml file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺深海 2024-10-04 06:07:37

您必须将以下内容添加到 xml 配置文件中才能更改验证拦截器。

<interceptor-ref name="validation">
      <param name="excludeMethods">input,back,cancel,browse,YOUR_METHOD_NAME</param>
</interceptor-ref>

或者,您可以使用注释该方法

@org.apache.struts2.interceptor.validation.SkipValidation

You have to add the following to your xml config file in order to change your validation interceptor.

<interceptor-ref name="validation">
      <param name="excludeMethods">input,back,cancel,browse,YOUR_METHOD_NAME</param>
</interceptor-ref>

Alternatively you can annotate the method with

@org.apache.struts2.interceptor.validation.SkipValidation
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文