STRUTS1使用TOKEN

三个步骤

一、保存并发送TOKEN

      具体方法是:

<html>

    <head>
        <base href="<%=basePath%>">
        <title>XXXXXXXX</title>      
        <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
        <script type="text/javascript">
           location.href="loginuser.do?method=intoLogin";
        </script>
    </head>
    <body>
      
    </body>
</html>

 

 /**
  * 产生TOKEN
  */
 public ActionForward intoLogin(ActionMapping mapping,ActionForm form,
   HttpServletRequest request,HttpServletResponse response){
  saveToken(request);
  return mapping.findForward("login");//跳转到登陆页面,并且将TOKEN发过去了
 }

二、在登陆页面增加隐藏域

<form>

在这里添加<input type="hidden" name="org.apache.struts.taglib.html.TOKEN" value='<%=session.getAttribute("org.apache.struts.action.TOKEN")%>'/>

</form>

三、验证

public ActionForward loginUser(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) {
  HttpSession session = request.getSession();
  String token = request
    .getParameter("org.apache.struts.taglib.html.TOKEN");
  String token2 = (String) session
    .getAttribute(org.apache.struts.Globals.TRANSACTION_TOKEN_KEY);
 session.removeAttribute(org.apache.struts.Globals.TRANSACTION_TOKEN_KEY);

if (token != null && !("").equals(token) && token.equals(token2)){

继续执行

}else {

不用继续了

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值