当前位置: 首页 > 工具软件 > X-Boot > 使用案例 >

nacos-config-spring-boot-starter的坑

赵河
2023-12-01

奇怪的问题,nacos-config-spring-boot-starter的使用基本已经搞定了
准备应用的时候由于几个服务都需要用到,所以把最开始写在其中一个服务的依赖

<dependency>
   <groupId>com.alibaba.boot</groupId>
   <artifactId>nacos-config-spring-boot-starter</artifactId>
   <version>0.2.1</version>
</dependency>

提了出来放在了顶级pom当中。编译的时候却出了问题。
其中一个类当中用到了@Cacheable(value = "MAPPER:AUTH:CODES:CACHE", keyGenerator = "simpleKeyGenerator")
结果这里的keyGenerator不认识。出现错误cannot resolve method 'keygenerator'

刚开始没仔细看,以为是缓存的问题,重启idea无效
又以为是其他同事改了组件代码,或者maven的依赖问题

后面才发现是Cacheable的版本不对,翻了一下依赖。看到nacos-config-spring-boot-starter下有依赖
org.springframework:spring-context
我这个版本这货用的3.2.x的。cacheable下自然是没有keyGenerator的。
所以排除了这个依赖就好了

<dependency>
     <groupId>com.alibaba.boot</groupId>
     <artifactId>nacos-config-spring-boot-starter</artifactId>
     <version>${nacos.config.version}</version>
     <exclusions>
         <exclusion>
             <groupId>org.springframework</groupId>
             <artifactId>spring-context</artifactId>
         </exclusion>
     </exclusions>
 </dependency>
 类似资料: