Commit de521671 by guojuxing

session有效期改成12小时

parent e674517f
......@@ -14,7 +14,10 @@ import javax.servlet.http.HttpServletResponse;
import java.util.concurrent.TimeUnit;
public class UserContext {
public static final Long expireLength = 1l;
/**
* 有效期12小时
*/
public static final Long expireLength = 12L;
private static UserContext userContext = null;
private static final Logger log = LogManager.getLogger(UserContext.class);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment