java – 在Struts2中设置cookie值的正确方法

我从Struts2教科书中获取了以下代码示例,代码的目的是在Action类中设置一个cookie,然后jsp页面应该从cookie中取出内容然后显示.

LoginAction类:

 public class LoginAction implements Action,ServletResponseAware{
    private HttpServletResponse response;
        ...
   public void setServletResponse(HttpServletResponse response)
   {
      this.response=response;
   }

   public String execute() throws Exception
   { 
      Cookie c= new Cookie("user",getUsername());
      c.setMaxAge(60*60);

      response.addCookie(c);
      return SUCCESS;
   }  

JSP页面:

 <html>
  <head>

  <title>Cookie Success Page</title>
  </head>
  <body>
   <br/>Welcome ${cookie.user.value}, thanks for logging in.
  </body>
 </html> 

我现在遇到的问题是${cookie.user.value}将始终显示为空白,无论我提供什么用户名.

也许这不是在Struts2中设置cookie值的好方法?

最佳答案 cookie只是一个幕后的地图.要从EL访问Map接口,请使用${cookie [“user”].value}

点赞