以下记录本人在使用Spring Boot开发微服务的过程中遇到的一些问题:
Feign
当Spring Cloud版本为 Brixton.RELEASE
,会出现:
1 | Attribute 'value' in annotation [org.springframework.cloud.netflix.feign.FeignClient] must be declared as an @AliasFor [serviceId], not [name]. |
解决办法:
将Spring Cloud版本改为 Brixton.SR5
或 Camden.RELEASE
,即可解决此问题。