Session后台打印
<c:set value="today" var="day" scope="session" />
<c:out value="${day}"/><br>
System.out.print(httpSession.getAttribute("day"));
后台打印的值是null
<c:set value="today" var="day" scope="session" />
<c:out value="${day}"/><br>
System.out.print(httpSession.getAttribute("day"));
后台打印的值是null
2017-04-21
举报