「Struts2」新規セッション(session)を取得する方法
サンプルコード
ServletActionContext.getRequest().getSession(true).invalidate();
HttpSession cftSess = ServletActionContext.getRequest().getSession(true);
cftsess.setAttribute(“username", username );
Coding Changes the World
サンプルコード
ServletActionContext.getRequest().getSession(true).invalidate();
HttpSession cftSess = ServletActionContext.getRequest().getSession(true);
cftsess.setAttribute(“username", username );