首先引入redis的jai包redis
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
在userserviceimpl引用springboot自帶的StringRedisTemplatespring
@Autowired private StringRedisTemplate stringRedisTemplate;
//把user實體類轉化成json格式 String userJoin = JSON.toJSONString(user); if (user != null) { //獲取uuid String uuid = UUIDUtils.getUUID(); //建立cookie Cookie cookie = new Cookie("userCookie", uuid); response.addCookie(cookie); //把用戶信息存入redis set(key,value,過時時長,過時格式) 設置三天過時 stringRedisTemplate.opsForValue().set("user" + "/" + uuid, userJoin, 3, TimeUnit.DAYS); return Msg.ok(""); } else { return Msg.failure("用戶名或密碼錯誤"); }
而後在usercontroller獲取的時候json
@RequestMapping(value = "/toMainPage") public ModelAndView toMainPage(HttpServletRequest request, HttpServletResponse response) { ModelAndView mv; String struuid = null; //獲取cookie裏面的uuid Cookie[] cookies = request.getCookies(); for (Cookie cookie : cookies) { if (cookie.getName().equalsIgnoreCase("userCookie")) { struuid = cookie.getValue(); } } if (struuid == null) { System.out.println("驗證不經過"); System.out.println("UUID不存在"); } String userJson; try { //根據struuid,在redis中獲取user信息 userJson = stringRedisTemplate.opsForValue().get("user" + "/" + struuid); JSONObject pa = JSONObject.parseObject(userJson); if ("管理員".equals(pa.getString("uRank")) && userJson != null) { mv = new ModelAndView("index"); mv.addObject("user", pa.getString("uName")); mv.addObject("id", pa.getString("id")); mv.addObject("uPwd", pa.getString("uPwd")); } else if ("普通用戶".equals(pa.getString("uRank")) && userJson != null) { mv = new ModelAndView("pt_index"); mv.addObject("user", pa.getString("uName")); mv.addObject("id", pa.getString("id")); mv.addObject("uPwd", pa.getString("uPwd")); } else { mv = new ModelAndView("redirect:login"); } } catch (Exception e) { // TODO Auto-generated catch block mv = new ModelAndView("redirect:login"); } return mv; }