我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Java后端长时间无操作自动退出的实现方式

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Java后端长时间无操作自动退出的实现方式

Java后端长时间无操作自动退出

使用session(最优)

设置session的过期时间,长时间(例如30分钟)无请求就会自动清除,达到长时间无操作自动退出的目的

server:
port: 9201
session:
timeout: 1800

使用拦截器

实现思路:每次请求后台时,在拦截器中刷新session,设置session时间为30分钟,这样请求每次进来都会重新设置session的过期时间

对于登陆长时间未操作超时退出问题

首先设置一个拦截器

import java.io.IOException; 
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
 

public class SessionFilter implements Filter {
 
    
    @Override
    public void destroy() {
    }
 
    
    @Override
    public void doFilter(ServletRequest request, ServletResponse response,
            FilterChain filterChain) throws IOException, ServletException {
        HttpServletRequest httpRequest = (HttpServletRequest) request;
        // 如果不为'鉴定是否锁定的请求',将用户的请求时间放置session
        if (!httpRequest.getServletPath().equals(
                "/session/checkLastPostTime.action")) {
            HttpSession session = httpRequest.getSession(true);
            session.setAttribute("lastPostTime", System.currentTimeMillis());
        }
        // 执行之后的过滤
        filterChain.doFilter(request, response); 
    } 
    
    @Override
    public void init(FilterConfig arg0) throws ServletException { 
    } 
}

然后进行配置文件

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">
<struts>
    <!-- 全局session处理action -->
    <package name="session" namespace="/session" extends="json-default">
        <action name="*" class="sessionAction" method="{1}">
            <result name="json" type="json">
                <param name="contentType">text/html</param>
                <param name="ignoreHierarchy">false</param>
            </result>
        </action>
    </package>
</struts>

Action: 

import javax.servlet.http.HttpSession; 
import org.apache.struts2.ServletActionContext;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller; 
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
 

@Controller
@Scope("prototype")
@SuppressWarnings("all")
public class SessionAction extends ActionSupport {
    
    public String checkLastPostTime() {
        HttpSession session = ServletActionContext.getRequest().getSession();
        Object attribute = session.getAttribute("lastPostTime");
        ActionContext.getContext().getValueStack().push(false);
        if (null != attribute) {
            Long lastPostTime = (Long) attribute;
            long currentTimeMillis = System.currentTimeMillis();
            if (1200000 <= (currentTimeMillis - lastPostTime)) {
                ActionContext.getContext().getValueStack().push(true);
            }
        }
        return ReturnType.JSON;
    }
}

页面以及调用 

$(function() {
      
        checkLastPostTime();
    });
var checkLastPostTimeInterval; 
    function checkLastPostTime(){
        checkLastPostTimeInterval = window.setInterval(function() {
            $.post("${pageContext.request.contextPath}/session/checkLastPostTime.action",{},
                function(result){
                    if (result) {
                        window.clearInterval(checkLastPostTimeInterval);
                        $("#checkLastPostTimeDialogError").html(" ");
                        $("#checkLastPostTimeDialog").dialog('open');
                    }
                }
            ,"json");
        }, 300000);
    }
    
    function checkLastPostTimeDialogFormSumbit(){
        if($('#checkLastPostTimeDialogForm').form('validate')){
            $.post("${pageContext.request.contextPath}/jsonLogin.action",{
                    username:$("#checkLastPostTimeDialogFormUserName").val(),
                    password:$("#checkLastPostTimeDialogFormPassword").textbox('getValue')
                },
                function(result){
                    if (result.errorMsg) {
                        $("#checkLastPostTimeDialogError").html(result.errorMsg);
                    } else {
                        $("#checkLastPostTimeDialog").dialog('close');
                        checkLastPostTime();
                    }
                }
            ,"json");
        }
    }

页面

<div id="checkLastPostTimeDialog" class="easyui-dialog" style="width:400px;height:200px;padding:20px;" data-options="title:'已锁定',border:false,closable:false,draggable:false,resizable:false,closed:true,modal:true,tools:'#checkLastPostTimeDialogTool'">
        <form id="checkLastPostTimeDialogForm" method="post">
            <div id="checkLastPostTimeDialogError" style="color:red;position:absolute;right:20px;" align="right" ></div>
            <table width="100%" >
                <tr>
                    <td >账    号:</td>
                    <td height="40px"  align="left"><shiro:principal /><input id="checkLastPostTimeDialogFormUserName" type="hidden"    style="width:220px;height:30px;line-height:30px;border-color:#5b97db;border-width: 1px;border-style: solid;" name="username" value="<shiro:principal />" /></td>
                </tr>
                <tr>
                    <td >密    码:</td>
                    <td height="40px"  align="left"><input id="checkLastPostTimeDialogFormPassword" required="true" class="easyui-textbox" type="password" style="width:220px;height:30px;line-height:30px;border-color:#5b97db;border-width: 1px;border-style: solid;" name="password" value="" /></td>
                </tr>
                <tr>
                    <td colspan="2" align="center">
                        <input class="login"  type="button" οnclick="checkLastPostTimeDialogFormSumbit();" style="width:110px;height:33px;border:0" value="" />
                    </td>
                </tr>
            </table>
        </form>
    </div>
    <div id="checkLastPostTimeDialogTool">
        <a href="#" style="width:30px;text-decoration:underline;line-height:16px;font-size:12px;" οnclick="logout();" >注销</a>
    </div>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Java后端长时间无操作自动退出的实现方式

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

java实现mysql自动更新创建时间与更新时间的两种方式

Java实现MySQL自动更新创建时间与更新时间的两种方式:第一种方式:使用注解(@CreationTimestamp和@UpdateTimestamp)使用JPA框架,在实体类字段上添加注解。JPA框架自动更新创建时间和更新时间。第二种方式:使用JDBC在插入或更新语句中手动设置字段。数据库触发器或默认值自动更新时间。比较:依赖:第一种依赖JPA,第二种依赖JDBC。方便性:第一种更方便。性能:第二种稍快。触发器:第一种不需要,第二种需要(如果使用触发器)。兼容性:第一种仅适用于JPA,第二种更广泛兼容
java实现mysql自动更新创建时间与更新时间的两种方式
2024-04-02

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录