セッションでの保存と取得
1366 ワード
Javaバックグラウンドセッションにキー値ペアを格納
JSTLタグはSessionにキー値ペアを取得して表示します.
JspはSessionにキー値ペアを格納して取得します.
jsでは、次のように取得できます.
public ModelAndView login(HttpServletRequest request,HttpServletResponse response){
String age= "123";
request.getSession().setAttribute("age", age);
//key、value
}
JSTLタグはSessionにキー値ペアを取得して表示します.
.setAttribute("age","123");%>
// session ,key、value
${sessionScope.age} 123
sessionScope session , requestScope,pageScope,contextScope
age set key
JspはSessionにキー値ペアを格納して取得します.
session jsp , jsp
"age", 123); // 123 session , age,
String c= session.getAttribute("age").toString();
// session a , c
%>
jsでは、次のように取得できます.
var name = "";