struts2 防止重复提交

页面里面加:<s:token/><%--防止表单重复提交--%>

 

struts.xml中的action中加:

<result name="invalid.token" type="redirectAction">

           <param name="actionName">loginsignup</param><!--重复提交后跳转的action-->

</result> 

<interceptor-ref name="defaultStack" />

<interceptor-ref name="token" />

你可能感兴趣的:(struts2)