「Spring MVC」ServletActionContext.getRequest().getSession()でセッションを操作するサンプル

1.セッションを生成
HttpSession session = ServletActionContext.getRequest().getSession(true).invalidate();
session = ServletActionContext.getRequest().getSession();
UserMemberBean userBean = new UserMemberBean();
session.setAttribute(“Session_Key", userBean);

2.セッションからオブジェクトを取り出す
HttpSession session = ServletActionContext.getRequest().getSession();
UserMemberBean userBean=session.getAttribute(“Session_Key");
if(cft == null){
userBean= new UserMemberBean();
session.setAttribute(“Session_Key",userBean);

}

Java

Posted by arkgame