Redis缓存自动配置未在春季启动中发生

时间:2019-04-16 15:43:11

标签: spring-boot caching redis

嗨,我正在尝试使用Redis缓存提供程序在spring boot微服务中进行缓存.spring boot redis文档指定仅添加以下依赖项

 <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

以及以下这些Spring应用程序属性

spring.cache.type=redis

spring.redis.host=192.168.99.100
spring.redis.port=6379
spring.redis.password=
主引导类中的

@EnableCaching 将启用redis缓存。

@SpringBootApplication
@EnableCaching
//@EnableResourceServer
//@EnableBinding(Source.class)
public class TibomServiceBooter {

    public static void main(String[] args)
    {
        SpringApplication.run(TibomServiceBooter.class, args);
    }

}

我做过同样的事情,但仍然无法获得CacheManger bean未定义的异常

Exception while startup

请帮帮我.....提前谢谢

0 个答案:

没有答案