亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

瀏覽:76日期:2023-03-14 09:31:42

最近在學習springboot,session這個點一直困擾了我好久,今天把這些天踩的坑分享出來吧,希望能幫助更多的人。

一、pom.xml配置

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-data-redis</artifactId></dependency>二、application.properties的redis配置

#redisspring.redis.host=127.0.0.1spring.redis.port=6379spring.redis.password=123456spring.redis.pool.max-idle=8spring.redis.pool.min-idle=0spring.redis.pool.max-active=8spring.redis.pool.max-wait=-1#超時一定要大于0spring.redis.timeout=3000spring.session.store-type=redis

在配置redis時需要確保redis安裝正確,并且配置notify-keyspace-events Egx,spring.redis.timeout設置為大于0,我當時這里配置為0時springboot時啟不起來。

三、編寫登錄狀態攔截器RedisSessionInterceptor

//攔截登錄失效的請求public class RedisSessionInterceptor implements HandlerInterceptor{ @Autowired private StringRedisTemplate redisTemplate; @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//無論訪問的地址是不是正確的,都進行登錄驗證,登錄成功后的訪問再進行分發,404的訪問自然會進入到錯誤控制器中HttpSession session = request.getSession();if (session.getAttribute('loginUserId') != null){ try {//驗證當前請求的session是否是已登錄的sessionString loginSessionId = redisTemplate.opsForValue().get('loginUser:' + (long) session.getAttribute('loginUserId'));if (loginSessionId != null && loginSessionId.equals(session.getId())){ return true;} } catch (Exception e) {e.printStackTrace(); }} response401(response);return false; } private void response401(HttpServletResponse response) {response.setCharacterEncoding('UTF-8');response.setContentType('application/json; charset=utf-8'); try{ response.getWriter().print(JSON.toJSONString(new ReturnData(StatusCode.NEED_LOGIN, '', '用戶未登錄!')));}catch (IOException e){ e.printStackTrace();} } @Override public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { } @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { }}四、配置攔截器

@Configurationpublic class WebSecurityConfig extends WebMvcConfigurerAdapter{ @Bean public RedisSessionInterceptor getSessionInterceptor() {return new RedisSessionInterceptor(); } @Override public void addInterceptors(InterceptorRegistry registry) {//所有已api開頭的訪問都要進入RedisSessionInterceptor攔截器進行登錄驗證,并排除login接口(全路徑)。必須寫成鏈式,分別設置的話會創建多個攔截器。//必須寫成getSessionInterceptor(),否則SessionInterceptor中的@Autowired會無效registry.addInterceptor(getSessionInterceptor()).addPathPatterns('/api/**').excludePathPatterns('/api/user/login');super.addInterceptors(registry); }}五、登錄控制器

@RestController@RequestMapping(value = '/api/user')public class LoginController{ @Autowired private UserService userService; @Autowired private StringRedisTemplate redisTemplate; @RequestMapping('/login') public ReturnData login(HttpServletRequest request, String account, String password) {User user = userService.findUserByAccountAndPassword(account, password);if (user != null){ HttpSession session = request.getSession(); session.setAttribute('loginUserId', user.getUserId()); redisTemplate.opsForValue().set('loginUser:' + user.getUserId(), session.getId()); return new ReturnData(StatusCode.REQUEST_SUCCESS, user, '登錄成功!');}else{ throw new MyException(StatusCode.ACCOUNT_OR_PASSWORD_ERROR, '賬戶名或密碼錯誤!');} } @RequestMapping(value = '/getUserInfo') public ReturnData get(long userId) {User user = userService.findUserByUserId(userId);if (user != null){ return new ReturnData(StatusCode.REQUEST_SUCCESS, user, '查詢成功!');}else{ throw new MyException(StatusCode.USER_NOT_EXIST, '用戶不存在!');} }}六、效果

我在瀏覽器上登錄,然后獲取用戶信息,再在postman上登錄相同的賬號,瀏覽器再獲取用戶信息,就會提示401錯誤了,瀏覽器需要重新登錄才能獲取得到用戶信息,同樣,postman上登錄的賬號就失效了。

瀏覽器:

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

postman:

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

七、核心原理詳解

分布式session需要解決兩個難點:1、正確配置redis讓springboot把session托管到redis服務器。2、唯一登錄。

1、redis:

redis需要能正確啟動到出現如下效果才證明redis正常配置并啟動

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

同時還要保證配置正確

@EnableCaching@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 30)//session過期時間(秒)@Configurationpublic class RedisSessionConfig{ @Bean public static ConfigureRedisAction configureRedisAction() {//讓springSession不再執行config命令return ConfigureRedisAction.NO_OP; }}

springboot啟動后能在redis上查到緩存的session才能說明整個redis+springboot配置成功!

SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例

2、唯一登錄:

1、用戶登錄時,在redis中記錄該userId對應的sessionId,并將userId保存到session中。

HttpSession session = request.getSession();session.setAttribute('loginUserId', user.getUserId());redisTemplate.opsForValue().set('loginUser:' + user.getUserId(), session.getId());

2、訪問接口時,會在RedisSessionInterceptor攔截器中的preHandle()中捕獲,然后根據該請求發起者的session中保存的userId去redis查當前已登錄的sessionId,若查到的sessionId與訪問者的sessionId相等,那么說明請求合法,放行。否則拋出401異常給全局異常捕獲器去返回給客戶端401狀態。

唯一登錄經過我的驗證后滿足需求,暫時沒有出現問題,也希望大家能看看有沒有問題,有的話給我點好的建議!

到此這篇關于SpringBoot+SpringSession+Redis實現session共享及唯一登錄示例的文章就介紹到這了,更多相關SpringBoot 唯一登錄內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 澳门麻豆传媒精东影业 | 酒色成人网 | 国产精品久久久久久久久免费 | 国产精品亚洲欧美一区麻豆 | 夜夜夜精品视频免费 | 国产精品www夜色影视 | 国产精品亚洲欧美日韩久久 | 亚洲综合图色40p | 美国毛片一级视频在线aa | 老妇毛片久久久久久久久 | 狠狠色综合久久丁香婷婷 | 99视频精品全部国产盗摄视频 | 一级做a爰片久久毛片免费 一级做a爰片久久毛片免费看 | 成人精品国产 | 久久精品国产一区二区三区 | 福利一区二区在线观看 | 性激烈的欧美暴力三级视频 | 国内自拍经典三级在线 | 成人欧美在线 | 国产婷婷丁香久久综合 | 国内精品久久久久激情影院 | 韩国免费高清一级 | 青青草综合视频 | 黄色毛片免费观看 | 一区二区三区网站 | xvideos国产在线视频 | 精品无人区一区二区三区a 精品无码一区在线观看 | 成人9久久国产精品品 | 亚洲无线码一区二区三区在线观看 | 亚洲欧洲精品成人久久曰影片 | 欧美精品午夜毛片免费看 | 尤物视频免费在线观看 | 青青草国产精品久久久久 | 岛国一级毛片 | 97青青草视频 | 国产精品手机视频一区二区 | 国产精品毛片一区二区三区 | 给我一个可以看片的www日本 | 亚洲美女精品视频 | 欧美色欧美亚洲另类二区 | huangse网站免费 |