SpringBoot整合Redis

这回就不多解释了,直接上步骤,虽然说很简单南,但是在项目开发中很实用

在这之前你需要去下载安装redis配合这个教程去整合

添加redis的起步依赖



    org.springframework.boot
    spring-boot-starter-data-redis

配置redis的连接信息

在properties文件中

#Redis
spring.redis.host=127.0.0.1
spring.redis.port=6379

注入RedisTemplate测试redis操作

@RunWith(SpringRunner.class)
@SpringBootTest(classes = MySpringBootApplication.class)
public class RedisTest {
	
	@Autowired
	private UserDao userDao;
	
	@Autowired
	private RedisTemplate redisTemplate;
	
	@Test
	public void test() throws JsonProcessingException {
		//从redis缓存中换区数据
		String userListData = redisTemplate.boundValueOps("user.findAll").get();
		//如果redis中没有数据的话
		if (null == userListData) {
			//查询数据获得的数据
			List users = userDao.findAll();
			//转换成json格式字符串
			ObjectMapper om = new ObjectMapper();
			userListData = om.writeValueAsString(users);
			//将数据储存到redis中。下次查询直接在redis中获得数据,不用再查询数据库
			redisTemplate.boundValueOps("user.findAll").set(userListData);
			System.out.println("===============从数据库获得数据===============");
		}else {
			System.out.println("===============从redis缓存中获得数据===============");
		}
		System.out.println(userListData);
		
	}

}

 

你可能感兴趣的:(springboot)