使用环境
- 使用spring boot构建上层服务项目
- redis缓存相关方法写到公共工具类,被上层服务依赖
common-utils
- redis是安装在本地虚拟机中
启动服务,首先程序报错为拒绝连接:
然后使用本地可视化工具进行测试连接,显示同样的错误
connection refused
解决方法:
- 首先在
redis.conf
中注释掉bind 127.0.0.1
这一行,其意思是只允许本地访问连接,其他Ip都将被拒绝. - 如果第一步操作过后,依然拒绝连接,可能为redis部署机器的防火墙没有关闭或者网络不通,进行如下操作:
2.1. 首先检查自己的网络,是否可以ping通
2.2. 检查端口netstat -tunlp |grep 6379
tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 3227/redis-server *
,查看结果也是ok的.
2.3 服务器防火墙的问题,关了防火墙试下:
systemctl stop firewalld.service
(我的远程机器是centos7)
补充:
systemctl stop firewalld.service
#停止firewall
systemctl disable firewalld.service
#禁止firewall开机启动
执行下面这段命令就可以开放6379端口了
firewall-cmd --zone=public --add-port=6379/tcp --permanent
至此本地可视化工具已经连接可用;
启动spring boot
程序,无法获取到RedisTemplate
jar
包使用@Configuration
配置redis缓存
代码如下:
@Configuration
@EnableCaching
@PropertySource("classpath:RedisConfig.properties")
public class RedisConfig extends CachingConfigurerSupport{
@Bean
public KeyGenerator wiselyKeyGenerator(){
return new KeyGenerator() {
@Override
public Object generate(Object target, Method method, Object... params) {
StringBuilder sb = new StringBuilder();
sb.append(target.getClass().getName());
sb.append(method.getName());
for (Object obj : params) {
sb.append(obj.toString());
}
return sb.toString();
}
};
}
@Bean
public CacheManager cacheManager(
@SuppressWarnings("rawtypes") RedisTemplate redisTemplate) {
return new RedisCacheManager(redisTemplate);
}
@Bean
public RedisTemplate<String, String> redisTemplate(
RedisConnectionFactory factory) {
StringRedisTemplate template = new StringRedisTemplate(factory);
Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
ObjectMapper om = new ObjectMapper();
om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
jackson2JsonRedisSerializer.setObjectMapper(om);
template.setValueSerializer(jackson2JsonRedisSerializer);
template.afterPropertiesSet();
return template;
}
}
属性文件在common-util
包中,RedisConfig.properties
内容如下:
# REDIS (RedisProperties)
# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=192.168.22.111
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
开始怀疑spring boot不会自动扫描jar包中的@Configuration
注解,测试过后,这个是完全可以的;
接下来开始调试,发现redis使用的是默认连接(127.0.0.1:6379)并没有读取到我的属性文件,原来spring boot不能默认读取jar包中的属性文件,需要我们手工指定装载进来:
在@Configuration
注解那里加上@PropertySource("classpath:RedisConfig.properties")
接下来问题又出现了:
Description:
Field template in org.pekxxoo.redis.RedisUtil required a single bean, but 2 were found:
- redisTemplate: defined by method 'redisTemplate' in class path resource [org/pekxxoo/redis/RedisConfig.class]
- stringRedisTemplate: defined by method 'stringRedisTemplate' in class path resource [org/springframework/boot/autoconfigure/data/redis/RedisAutoConfiguration$RedisConfiguration.class]
看说明,可以知道,是因为@Autowired
在注入时,是匹配类型的,如果存在两个一个类型的实例时就会报错,报错信息指出,一个redisTemplate
是在我的RedisConfig.class
中配置的,另一个是RedisAutoConfiguration
中进行声明的,因此两种解决方案:
- 在启动类处加上注解:
@EnableAutoConfiguration(exclude = RedisAutoConfiguration.class)
关闭自动注入配置; - 在RedisUtil.class注入时结合
@Qualifier("")
注解:
@Qualifier("redisTemplate")
@Autowired
private RedisTemplate<String,String> template;
至此spring boot
结合redis
缓存终于启动成功;