struts2的token机制

token机制:解决页面重复提交
struts2中的步骤:
1.struts2提供了token拦截器
<action name="itcast" class="cn.itcsst.action.PersonAction">
		     <interceptor-ref name="defaultStack"/>
       		 <interceptor-ref name="token"/>
       		 <result name="invalid.token">/index.jsp</result>
			 <result>/WEB-INF/page/message.jsp</result>
	</action>
2.在表单中体检<s:token></s:token>标签
<s:form action="itcast" namespace="/test" method="post">
	  	姓名:<s:textfield name="name"/><s:token></s:token>
	  	<input type="submit" value="发送"/>
 </s:form>

与struts1相比,简单的多

你可能感兴趣的:(java,Web,jsp)