SpingBoot2.1.3集成Redis SpingBoot2.x+redis

  • redis服务端启动
  • 引入pom依赖
  • 配置文件
  • 注解@EnableCaching
  • 写-测试-写-测试
redis服务端启动

redis7之后可以不依赖tomcat独立运行(下载,解压就不记录了),启动成功,窗口别关

SpingBoot2.1.3集成Redis SpingBoot2.x+redis_第1张图片
使用idea新建一个springboot工程,创建时候可以引入Lombok和Redis。
注:Lombok使用跟着做就可以了,遇到问题可能是没安装插件,给个链接安装Lombok的插件https://blog.csdn.net/m0_37779977/article/details/79028299

项目创建结束后先把pom.xml搞定

引入pom依赖
  • 注:在springboot2之后,redis默认集成的是lettuce,
  • 如果要使用jedis,需要使用第二个xml配置

第一种

        
            org.springframework.boot
            spring-boot-starter-data-redis
        
        
            org.projectlombok
            lombok
            true
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

第二种 :
修改redis引入方式


            org.springframework.boot
            spring-boot-starter-data-redis
            
            
                
                    redis.clients
                    jedis
                
                
                    io.lettuce
                    lettuce-core
                
            
        
        
        
            redis.clients
            jedis
            2.9.0
        
        
        
        
        
            org.apache.commons
            commons-pool2
            RELEASE
        
配置文件:

新建一个application.yml文件或者使用默认的配置文件application.properties.
先配置最基础的,其他的使用默认配置。

spring:
  redis:
    # Redis服务器地址
    host: 127.0.0.1
    # Redis数据库索引(默认为0)
    database: 0
    # Redis服务器连接端口
    port: 6379
    #  自己redis设置的密码
    password: kone212)
    #连接超时时间(毫秒)
    timeout: 10000
注解@EnableCaching

在启动类上加上注解:

@EnableCaching
@SpringBootApplication
public class DemoredisApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoredisApplication.class, args);
    }
}
开始搞点情况:

先搞个User实体类
注意实现Serializable

@Data
@Builder(toBuilder = true)
@NoArgsConstructor
@AllArgsConstructor
public class User implements Serializable {
    private String name;
    private Integer age;
}

再来个service和impl:

public interface IuserService {
    User find(Integer id);
}

这里使用的是注解的方式,value指定了缓存的控件,key使用的是el方式写入,如果使用默认的缓存配置,这里key只能是string类型的。

@Service
public class UserServiceImpl implements  IuserService {
    @Autowired
    private StringRedisTemplate stringRedisTemplate;
    
	@Override
	@Cacheable(value = "users", key = "'id_' + #id")
	public User find(Integer id) {
	    System.out.println("load2");
	    User u=User.builder().
	            name("name"+new Random().nextInt(1000))
	            .age(new Random().nextInt(100)).build();
	    return u;
	}
测试

右击RedisApplication的main跑起来。
使用postman调用接口:

http://localhost:8080/user

SpingBoot2.1.3集成Redis SpingBoot2.x+redis_第2张图片

多点几次调用接口,看idea控制台打印内容:

注意到只有第一次的时候有打印load2,后面的都直接返回,说明启用了缓存。

load1
load2
load1
load1

这就是缓存成功了。

你可能感兴趣的:(Redis)