会话在会话超时之前到期

时间:2015-04-29 13:19:17

标签: java session spring-mvc timeout session-timeout

要使会话保持活动状态,如果用户有任何活动,我每隔30秒就会ping一次服务器。但即使在ping之后,有时(并非始终如一),服务器也不会更新会话。会话超时为30分钟。 第一个请求在12:27发送,下一个请求在12:35发送.....但对于第二个请求,我收到了未经授权的401错误。我在服务器端使用java和IE10进行浏览。不幸的是,我的声誉太低,无法发布两个请求的响应标头图像。提前致谢。 enter image description here enter image description here

的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<!-- Use this definition if using a Java EE 6 container This also stops Eclipse 
    from complaining that 3.0 is not a valid version -->
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation=" 
    http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <!-- Session Configuration -->
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>
</web-app>

0 个答案:

没有答案