token

<%@ taglib prefix="s" uri="/struts-tags" %>

 

<s:token name="token"/>

 

@Results({
@Result(name
="invalid.token",location="/index.html",type="redirect")}
)
@InterceptorRefs(
{@InterceptorRef(value="token",params={"includeMethods","save"}),@InterceptorRef("defaultStack") })

 

最主要的就是 token拦截器中还有 includeMethods()这个方法,表示的是,Action中的哪个方法需要经过拦截器。属性excludeMethods()这个方法表示的是 哪个方法不经过拦截器。如果,没有加上“defaultStack”这个拦截器的话,则ActionContext的值将为null。

你可能感兴趣的:(token)