在进入页面的action里调this.saveToken(request);   //生成令牌
页面里放   <html:form>  
保存的Action里调用

if   (isTokenValid(request)){ 
                                      //销毁产生新令牌 
                                      this.resetToken(request); 
return   mapping.findForward( "success "); 
}else{ 
                return   mapping.findForward( "fail "); 
}