SpringBoot+SpringSession+Redis實(shí)現(xiàn)session共享及唯一登錄示例
最近在學(xué)習(xí)springboot,session這個(gè)點(diǎn)一直困擾了我好久,今天把這些天踩的坑分享出來(lái)吧,希望能幫助更多的人。
一、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#超時(shí)一定要大于0spring.redis.timeout=3000spring.session.store-type=redis
在配置redis時(shí)需要確保redis安裝正確,并且配置notify-keyspace-events Egx,spring.redis.timeout設(shè)置為大于0,我當(dāng)時(shí)這里配置為0時(shí)springboot時(shí)啟不起來(lái)。
三、編寫登錄狀態(tài)攔截器RedisSessionInterceptor//攔截登錄失效的請(qǐng)求public class RedisSessionInterceptor implements HandlerInterceptor{ @Autowired private StringRedisTemplate redisTemplate; @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//無(wú)論訪問(wèn)的地址是不是正確的,都進(jìn)行登錄驗(yàn)證,登錄成功后的訪問(wèn)再進(jìn)行分發(fā),404的訪問(wèn)自然會(huì)進(jìn)入到錯(cuò)誤控制器中HttpSession session = request.getSession();if (session.getAttribute('loginUserId') != null){ try {//驗(yàn)證當(dāng)前請(qǐng)求的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) {//所有已a(bǔ)pi開(kāi)頭的訪問(wèn)都要進(jìn)入RedisSessionInterceptor攔截器進(jìn)行登錄驗(yàn)證,并排除login接口(全路徑)。必須寫成鏈?zhǔn)剑謩e設(shè)置的話會(huì)創(chuàng)建多個(gè)攔截器。//必須寫成getSessionInterceptor(),否則SessionInterceptor中的@Autowired會(huì)無(wú)效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, '賬戶名或密碼錯(cuò)誤!');} } @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上登錄相同的賬號(hào),瀏覽器再獲取用戶信息,就會(huì)提示401錯(cuò)誤了,瀏覽器需要重新登錄才能獲取得到用戶信息,同樣,postman上登錄的賬號(hào)就失效了。
瀏覽器:
postman:
分布式session需要解決兩個(gè)難點(diǎn):1、正確配置redis讓springboot把session托管到redis服務(wù)器。2、唯一登錄。
1、redis:redis需要能正確啟動(dòng)到出現(xiàn)如下效果才證明redis正常配置并啟動(dòng)
同時(shí)還要保證配置正確
@EnableCaching@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 30)//session過(guò)期時(shí)間(秒)@Configurationpublic class RedisSessionConfig{ @Bean public static ConfigureRedisAction configureRedisAction() {//讓springSession不再執(zhí)行config命令return ConfigureRedisAction.NO_OP; }}
springboot啟動(dòng)后能在redis上查到緩存的session才能說(shuō)明整個(gè)redis+springboot配置成功!
1、用戶登錄時(shí),在redis中記錄該userId對(duì)應(yīng)的sessionId,并將userId保存到session中。
HttpSession session = request.getSession();session.setAttribute('loginUserId', user.getUserId());redisTemplate.opsForValue().set('loginUser:' + user.getUserId(), session.getId());
2、訪問(wèn)接口時(shí),會(huì)在RedisSessionInterceptor攔截器中的preHandle()中捕獲,然后根據(jù)該請(qǐng)求發(fā)起者的session中保存的userId去redis查當(dāng)前已登錄的sessionId,若查到的sessionId與訪問(wèn)者的sessionId相等,那么說(shuō)明請(qǐng)求合法,放行。否則拋出401異常給全局異常捕獲器去返回給客戶端401狀態(tài)。
唯一登錄經(jīng)過(guò)我的驗(yàn)證后滿足需求,暫時(shí)沒(méi)有出現(xiàn)問(wèn)題,也希望大家能看看有沒(méi)有問(wèn)題,有的話給我點(diǎn)好的建議!
到此這篇關(guān)于SpringBoot+SpringSession+Redis實(shí)現(xiàn)session共享及唯一登錄示例的文章就介紹到這了,更多相關(guān)SpringBoot 唯一登錄內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 原生js實(shí)現(xiàn)的觀察者和訂閱者模式簡(jiǎn)單示例2. asp讀取xml文件和記數(shù)3. JS錯(cuò)誤處理與調(diào)試操作實(shí)例分析4. xml中的空格之完全解說(shuō)5. python基于scrapy爬取京東筆記本電腦數(shù)據(jù)并進(jìn)行簡(jiǎn)單處理和分析6. JS實(shí)現(xiàn)表單中點(diǎn)擊小眼睛顯示隱藏密碼框中的密碼7. 在終端啟動(dòng)Python時(shí)報(bào)錯(cuò)的解決方案8. Python如何實(shí)現(xiàn)感知器的邏輯電路9. vue 驗(yàn)證兩次輸入的密碼是否一致的方法示例10. 基于android studio的layout的xml文件的創(chuàng)建方式
