javax.servlet.http.HttpSession.setAttribute()でセッションを設定するサンプル

2018年9月11日

サンプルコード:

HttpSession session = ServletActionContext.getRequest().getSession();

OrderSessionDataBean orderSessionDataBean = new OrderSessionDataBean();
orderSessionDataBean.setBookId("xxx");
orderSessionDataBean.setAuthor("xxx");
orderSessionDataBean.setPubDate("xxx");
orderSessionDataBean.setPrice("xxx");

session.setAttribute("SESSION_KEY_ORDER", orderSessionDataBean);

Java

Posted by arkgame