Java教程

SpringBoot集成redis

本文主要是介绍SpringBoot集成redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

SpringBoot集成redis

1.通过注解方式

1.1导入依赖

  implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.4.10'

1.2 在yml文件中配置redis

spring:
  redis:
    host: localhost
    password:
    port: 6379

1.3 在使用的类中注入

	@Autowired
    private RedisTemplate redisTemplate;
	...........
 	@Override
    public Map getAllPolyline() {
        Map map = new HashMap();
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        OcPolylineData polyline = (OcPolylineData)redisTemplate.opsForValue().get("Polyline1");
        log.info("第一次从查询redis"+polyline);
        List<OcPolylineData> ocPolylineDataList = polylineDataMapper.selectAllType();
        redisTemplate.opsForValue().set("Polyline1",ocPolylineDataList);
		map.put("polylineDataList",ocPolylineDataList);
        map.put("Code", 200);
        map.put("Desc", "成功");
        return map;
    }

1.4测试一下

第一此查询
在这里插入图片描述

可以看到redis 里面是空的

第二次 可以看到redis里面是有的
在这里插入图片描述
emm其他的方式后续会更新
在这里插入图片描述

这篇关于SpringBoot集成redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!