2019独角兽企业重金招聘Python工程师标准>>>
JSTL标签获取Session:java 代码中(springmvc中在HandlerInterceptorAdapter)中处理
session.setAttribute("age","123");
页面上
${sessionScope.age} 在页面上显示的就是123了 sessionScope指的是session的范围,类似还有requestScope,pageScope,contextScope
然后后面的age表示的是set属性时的key值 Jsp中获取Session:session是jsp的内置对象,所以你可以直接写在jsp的
<%
session.setAttribute("a", b); //把b放到session里&#xff0c;命名为a&#xff0c;
String M &#61; session.getAttribute(“a”).toString(); //从session里把a拿出来&#xff0c;并赋值给M
%>