如何从struts2中的验证中排除操作方法...例如,我想用同一个动作类中的两个文件和其他操作方法对一个操作登录进行验证说测试方法和提交的消息.....我怎么能做到了吗?使用一个xml文件?
答案 0 :(得分:0)
您必须将以下内容添加到xml配置文件中才能更改验证拦截器。
<interceptor-ref name="validation">
<param name="excludeMethods">input,back,cancel,browse,YOUR_METHOD_NAME</param>
</interceptor-ref>
或者,您可以使用
注释方法@org.apache.struts2.interceptor.validation.SkipValidation