推荐链接:
总结——》【Java】
总结——》【Mysql】
总结——》【Redis】
总结——》【Kafka】
总结——》【Spring】
总结——》【SpringBoot】
总结——》【MyBatis、MyBatis-Plus】
总结——》【Linux】
总结——》【MongoDB】
总结——》【Elasticsearch】
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-data-redisartifactId>
dependency>
#配置springboot对redis的依赖
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.database=0
package com.xiaoxian.demo.controller;
import lombok.Data;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@RestController
public class RedisTestController {
@Autowired
RedisTemplate redisTemplate;
@GetMapping("/redis/test")
public void test() {
List<User> list = new ArrayList<>();
User user = new User();
user.setId(1);
user.setName("测试");
user.setBirthday(LocalDateTime.now());
list.add(user);
redisTemplate.opsForValue().set("strTest1", list);
Map<String, Object> map = new HashMap<>(2);
map.put("id", 1);
map.put("name", "测试");
map.put("birthday", LocalDateTime.now());
redisTemplate.opsForHash().putAll("mapTest1", map);
}
}
@Data
class User implements Serializable {
Integer id;
String name;
LocalDateTime birthday;
}