返回顶部
首页 > 资讯 > 精选 >SpringBoot2.x如何设置Session失效时间及失效跳转
  • 661
分享到

SpringBoot2.x如何设置Session失效时间及失效跳转

2023-06-29 12:06:09 661人浏览 八月长安
摘要

这篇文章给大家分享的是有关SpringBoot2.x如何设置Session失效时间及失效跳转的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。设置Session失效时间及失效跳转#Session超时时间设置,单位是秒

这篇文章给大家分享的是有关SpringBoot2.x如何设置Session失效时间及失效跳转的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

设置Session失效时间及失效跳转

#Session超时时间设置,单位是秒,默认是30分钟 server.servlet.session.timeout=10

然而并没有什么用,因为springBoot在TomcatServletWEBServerFactory代码中写了这个

    private long getSessionTimeoutInMinutes() {        Duration sessionTimeout = this.getSession().getTimeout();        return this.isZeroOrLess(sessionTimeout) ? 0L : Math.max(sessionTimeout.toMinutes(), 1L);    }

如果说某些人看不懂 Duration 这个类是什么,我不推荐你接着看下去了,因为没有什么帮助。

Session失效后如何跳转到Session失效地址

package cn.coreqi.security.config; import cn.coreqi.security.Filter.SmsCodeFilter;import cn.coreqi.security.Filter.ValidateCodeFilter;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.security.config.annotation.web.builders.httpsecurity;import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;import org.springframework.security.crypto.passWord.NoOpPasswordEncoder;import org.springframework.security.crypto.password.PasswordEncoder;import org.springframework.security.web.authentication.AuthenticationFailureHandler;import org.springframework.security.web.authentication.AuthenticationSuccesshandler;import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;@Configurationpublic class WebSecurityConfig extends WebSecurityConfigurerAdapter {    @Autowired    private AuthenticationSuccessHandler coreqiAuthenticationSuccessHandler;    @Autowired    private AuthenticationFailureHandler coreqiAuthenticationFailureHandler;    @Autowired    private SmsCodeAuthenticationSecurityConfig smsCodeAuthenticationSecurityConfig;    @Bean    public PasswordEncoder passwordEncoder(){        return NoOpPasswordEncoder.getInstance();    }    @Override    protected void configure(HttpSecurity http) throws Exception {        ValidateCodeFilter validateCodeFilter = new ValidateCodeFilter();        validateCodeFilter.setAuthenticationFailureHandler(coreqiAuthenticationFailureHandler);        SmsCodeFilter smsCodeFilter = new SmsCodeFilter();        //http.httpBasic()    //httpBasic登录 BasicAuthenticationFilter        http.addFilterBefore(smsCodeFilter, UsernamePasswordAuthenticationFilter.class)    //加载用户名密码过滤器的前面                .addFilterBefore(validateCodeFilter, UsernamePasswordAuthenticationFilter.class)    //加载用户名密码过滤器的前面                .fORMLogin()    //表单登录 UsernamePasswordAuthenticationFilter                    .loginPage("/coreqi-signIn.html")  //指定登录页面                    //.loginPage("/authentication/require")                    .loginProcessingUrl("/authentication/form") //指定表单提交的地址用于替换UsernamePasswordAuthenticationFilter默认的提交地址                    .successHandler(coreqiAuthenticationSuccessHandler) //登录成功以后要用我们自定义的登录成功处理器,不用Spring默认的。                    .failureHandler(coreqiAuthenticationFailureHandler) //自己体会把                .and()                .sessionManagement()                    .invalidSessionUrl("session/invalid")    //session过期后跳转的URL                .and()                .authorizeRequests()    //对授权请求进行配置                    .antMatchers("/coreqi-signIn.html","/code/image","/session/invalid").permitAll() //指定登录页面不需要身份认证                    .anyRequest().authenticated()  //任何请求都需要身份认证                    .and().csrf().disable()    //禁用CSRF                .apply(smsCodeAuthenticationSecurityConfig);            //FilterSecurityInterceptor 整个SpringSecurity过滤器链的最后一环    }}
    @GetMapping("/session/invalid")    @ResponseStatus(code = HttpStatus.UNAUTHORIZED)    public SimpleResponse sessionInvalid(){        String message = "session失效";        return new SimpleResponse(message);    }

设置Session失效的几种方式

如果是1.5.6版本

这里可以在application中加上bean文件

package com.example.demo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;import org.springframework.context.annotation.Bean;@SpringBootApplicationpublic class DemoApplication {undefinedpublic static void main(String[] args) {    SpringApplication.run(DemoApplication.class, args);}//设置session过期时间@Beanpublic EmbeddedServletContainerCustomizer containerCustomizer() {    return new EmbeddedServletContainerCustomizer() {        public void customize(ConfigurableEmbeddedServletContainer container) {            container.setSessionTimeout(7200);// 单位为S        }    };}}

SpringBoot2.x如何设置Session失效时间及失效跳转

还可以设置

application.yml

server:port: 8081servlet:session:timeout: 60s

SpringBoot2.x如何设置Session失效时间及失效跳转

@RestControllerpublic class HelloController {undefined@PostMapping("test")public Integer getTest(@RequestParam("nyy")String nn, HttpServletRequest httpServletRequest ){    HttpSession session = httpServletRequest.getSession();   session.setMaxInactiveInterval(60);    int maxInactiveInterval = session.getMaxInactiveInterval();    long lastAccessedTime = session.getLastAccessedTime();    return maxInactiveInterval;}}

SpringBoot2.x如何设置Session失效时间及失效跳转

感谢各位的阅读!关于“SpringBoot2.x如何设置Session失效时间及失效跳转”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

--结束END--

本文标题: SpringBoot2.x如何设置Session失效时间及失效跳转

本文链接: https://lsjlt.com/news/324980.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • SpringBoot2.x如何设置Session失效时间及失效跳转
    这篇文章给大家分享的是有关SpringBoot2.x如何设置Session失效时间及失效跳转的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。设置Session失效时间及失效跳转#Session超时时间设置,单位是秒...
    99+
    2023-06-29
  • SpringBoot2.x设置Session失效时间及失效跳转方式
    目录设置Session失效时间及失效跳转Session失效后如何跳转到Session失效地址设置Session失效的几种方式如果是1.5.6版本还可以设置设置Session失效时间及...
    99+
    2024-04-02
  • php如何设置session失效时间
    这篇文章主要为大家展示了“php如何设置session失效时间”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“php如何设置session失效时间”这篇文章吧。php设置session失效时间的方...
    99+
    2023-06-15
  • Springboot2 session设置超时时间无效的解决
    问题: 今天项目中遇到了一个设置时间超时的问题,按SpringBoot2的application.properties更改一直不生效。 解决方案: server.*属性用于...
    99+
    2024-04-02
  • Springboot2 session设置超时时间无效的解决方法
    本篇内容介绍了“Springboot2 session设置超时时间无效的解决方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!问题:今天项目...
    99+
    2023-06-20
  • redis如何设置key缓存失效时间
    Redis中可以使用`EXPIRE`命令设置一个key的缓存失效时间。命令格式如下:```EXPIRE key seconds```...
    99+
    2023-09-05
    redis
  • redis怎么设置失效时间
    在Redis中,可以使用EXPIRE命令为键设置过期时间。 语法:EXPIRE key seconds 示例: SET mykey ...
    99+
    2024-04-09
    redis
  • kafka怎么设置数据失效时间
    Kafka本身不提供数据失效时间的设置功能。Kafka是一个分布式消息队列,它主要负责消息的持久化和流式处理。消息在Kafka中会被...
    99+
    2023-10-27
    kafka
  • JavaScript中Cookie的使用之如何设置失效时间
    目录1.什么是Cookie?1.1简介1.2特点2.JavaScript操作Cookie2.1基础操作2.2设置失效时间总结1.什么是Cookie? 1.1简介 主要用于存储访问过的...
    99+
    2022-12-08
    JavaScript Cookie Cookie的使用 Cookie设置失效时间
  • 设置cookie指定时间失效怎么办
    小编给大家分享一下设置cookie指定时间失效怎么办,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!实例如下:<!DOCTY...
    99+
    2024-04-02
  • 设置Cookie时间失效的代码怎么写
    这篇“设置Cookie时间失效的代码怎么写”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“设...
    99+
    2024-04-02
  • Ubuntu的tzselect设置时间失效怎么解决
    今天小编给大家分享一下Ubuntu的tzselect设置时间失效怎么解决的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。tzs...
    99+
    2023-07-04
  • 如何使用Ajax时处理用户session失效问题
    这篇文章主要为大家展示了“如何使用Ajax时处理用户session失效问题”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“如何使用Ajax时处理用户session...
    99+
    2024-04-02
  • java如何设置页面跳转时间
    在Java中,可以使用以下方法来设置页面跳转时间:1. 使用Thread.sleep()方法:在页面跳转之前,使用Thread.sl...
    99+
    2023-09-27
    java
  • php如何设置登录3天失效
    本篇内容主要讲解“php如何设置登录3天失效”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“php如何设置登录3天失效”吧!先来看一下为什么需要限制登录状态的有效期。通常情况下,用户登录一个网站或...
    99+
    2023-07-05
  • oracle设置索引失效如何解决
    当Oracle中的索引失效时,可以尝试以下解决方法:1. 重新构建索引:使用ALTER INDEX语句来重新构建索引。例如,ALTE...
    99+
    2023-08-23
    oracle
  • php如何设置cookie有效时间即时生效
    本文小编为大家详细介绍“php如何设置cookie有效时间即时生效”,内容详细,步骤清晰,细节处理妥当,希望这篇“php如何设置cookie有效时间即时生效”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。在编写PH...
    99+
    2023-07-05
  • mysql中设置自动提交失效如何解决
    mysql中设置自动提交失效如何解决,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。问题很简单 JDBC 连接mysl 获取connnectio...
    99+
    2024-04-02
  • linux如何设置用户口令的失效期限
    ...
    99+
    2024-04-02
  • 解决pageHelper分页失效以及如何配置问题
    目录pageHelper分页失效及配置问题原因解决方案PageHelper分页无效及报错第一种情况SQL报错第二种情况分页无效总结pageHelper分页失效及配置问题 我在使用pa...
    99+
    2023-05-14
    pageHelper分页失效 pageHelper分页配置 pageHelper分页
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作