请问session要设置它的时间是如何设置呢?
还有比如我上面是
session.setAttribute("massage", massage);
下面再
session.setAttribute("massage", massage1);
那get出来的值是两条massage还是get到massage1呢?
+1
单位是minute++10000
<!-- session超时定义,单位为分钟 -->web.xml里这样配置session时长session设置timeout时间可以通过WEB.xml来配,也可以手动配置,看一下API就知道了(setMaxInactiveInterval)
<session-config>
<session-timeout>90</session-timeout>
</session-config>
massage1 key 相同就覆盖了