1,引入redis :防止恶意入侵数据库
@Autowired
StringRedisTemplate redisTemplate;
2,将对象转为Json方便存储
Object ob = JSON.toJSON(new 对象)
3,存入redis,这里,这里选择定时存储
参数一:传入参数的键,用户必传
参数二:传入的json.toString()
参数三:设置的定时,用户在这一时间内不能重复提交
参数四:时间配置
redisTemplate.opsForValue().set(Contanents.JWT_LOGIN+传入的唯一id.toString(),ob.toString,30, TimeUnit.SECONDS);
4,在从redis中获取字符串json对象的字符串
Object jsonObject = redisTemplate.opsForValue().get(Contanents.JWT_LOGIN+唯一id.toString());
5,通过json转对象并通过类字节码反射成为要转的对象
对象 str = JSON.parseObject((String) object,对象.class);
6,在请求mysql数据库,防止造成大量数据堵塞
....insert init