SpringBoot启动微服务报错Consider defining a bean of type ‘org.springframework.data.redis.core.RedisTemplate

最近遇到一个问题,项目之前使用了Redis,可正常启动,然后最近对Redis部分进行了一些微调,再启动服务提示如下错误:

Consider defining a bean of type 'org.springframework.data.redis.core.RedisTemplate' in your configuration.

出现该错误的原因可能有很多,记录下几种解决办法。

1、SpringBoot版本问题:

pom.xml中如果有配置


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

springboot的版本可能有问题,修改Springboot版本为如下版本即可

1.5.17.RELEASE
 


		org.springframework.boot
		spring-boot-starter-parent
		2.0.9.RELEASE
	

将2.0.9.RELEASE改为1.5.17.RELEASE

2、检查Redis配置是否正常,如果没有配置Redis,可在项目下新建一个config的包,在该包下新建RedisConfig类,类的内容如下

@Configuration
public class RedisConfig {

	@Bean
	public RedisTemplate getRedisTemplate(RedisConnectionFactory factory) {
		RedisTemplate template = new RedisTemplate<>();
		template.setKeySerializer(new StringRedisSerializer());
		template.setHashKeySerializer(new StringRedisSerializer());
		template.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());
		template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
		template.setEnableTransactionSupport(true);
		template.setConnectionFactory(factory);
		return template;
	}
	
}

3、SpringBoot启动扫码包的配置问题,springBoot启动时候,会自动扫描Application所在包路径下的所有bean,检查你所注入RedisTemplate的这个类所在目录,是否再启动类的目录结构之下 

4、注意RedisTemplate的注入注解,看看是Autowired还是Resource,如果是Autowired,可以改为Resource

@Resource
RedisTemplate> redisTemplateUA;

这里需要注意,如果RedisTemplate注入的变量名为redisTemplate,此时即使没有进行RedisConfig的配置,依然可以正常启动项目,原因为SpringBoot自动帮我们在容器中生成了一个RedisTemplate和一个StringRedisTemplate。但是,这个RedisTemplate的泛型是,写代码不方便,需要写好多类型转换的代码;我们需要一个泛型为形式的RedisTemplate。并且,这个RedisTemplate没有设置数据存在Redis时,key及value的序列化方式:

@Configuration
@ConditionalOnClass(RedisOperations.class)
@EnableConfigurationProperties(RedisProperties.class)
@Import({ LettuceConnectionConfiguration.class, JedisConnectionConfiguration.class })
public class RedisAutoConfiguration {
    @Bean
    @ConditionalOnMissingBean(name = "redisTemplate")
    public RedisTemplate redisTemplate(
            RedisConnectionFactory redisConnectionFactory) throws UnknownHostException {
        RedisTemplate template = new RedisTemplate<>();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }

    @Bean
    @ConditionalOnMissingBean
    public StringRedisTemplate stringRedisTemplate(
            RedisConnectionFactory redisConnectionFactory) throws UnknownHostException {
        StringRedisTemplate template = new StringRedisTemplate();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }
}

你可能感兴趣的:(Spring,Boot,Redis,spring,boot,redis,微服务)