-1
我試圖禁用一個類的方法的驗證。Struts2禁用驗證
我已經看過註釋@SkipValidation
,但它不起作用。我試圖把下面的interceptor-ref放到我的動作中,但它也不起作用。
<interceptor-ref name="validation">
<param name="excludeMethods">ricerca,execute</param>
</interceptor-ref>
我需要刪除此類的Date
字段的驗證。
定義「不起作用」。另外,如果您在操作配置中指定了攔截器配置,則必須指定* all *攔截器。你可以參考你使用的任何堆棧,並且參數名稱也使用'validation.excludeMethods',IIRC。 –
與不工作我的意思是它不表現我想要的。爲什麼不用我用'@ SkipValidation'註釋的方法跳過驗證? – Emaborsa
它應該通過以下攔截器http://struts.apache.org/release/2.3.x/struts2-core/apidocs/org/apache/struts2/interceptor/validation/AnnotationValidationInterceptor.html。 –