狂奔的小棕棕: SpringBoot 的部分代码 @ConfigurationProperties( prefix = "" ) public class RedisProperties { private int database = 0; private String url; private String host = "localhost"; private String username; private String password; private int port = 6379; }
启动服务报7000端口被占用
SpringBoot使用Redisson操作Redis及使用场景实战