Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException:
加载不了bootstrap.properties只需要在common增加依赖。
·
报错内容
Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder ‘coupon.username’ in value “${coupon.username}”
报错原因
加载不了bootstrap.properties只需要在common增加依赖
解决方式
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
<version>3.0.3</version>
</dependency>
更多推荐




所有评论(0)