为了解决表单的重复提交问题,我们选用如下代码方式:
<ww:form method= "post ">
<ww:token/>
</ww:form>
在 <ation> 配置中增加
<result name= "invalid.token "> /error.jsp </result>
<interceptor-ref name= "params "> </interceptor-ref>
<interceptor-ref name= "token "> </interceptor-ref>
但是在我的程序中这种办法就是不好用,经过实验发现如下配置方式也是比较好用的:
<ww:form method= "post ">
<ww:token/>
</ww:form>
在 <ation> 配置中增加
<interceptor-ref name="token"/>
<interceptor-ref name="basicStack"/>
<result name= "invalid.token "> /error.jsp </result>
大家可以试试。