能够正常启动的项目突然报错application.yaml中定义的环境变量无法解析,并有如下报错
2021-08-17 11:12:47,623 ERROR [org.springframework.boot.SpringApplication] - Application startup failed
org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean
definition with name 'AccountClient' defined in null:
Could not resolve placeholder 'rpc.account-service' in value "http://${rpc.account-service}";
nested exception is java.lang.IllegalArgumentException:
Could not resolve placeholder 'rpc.account-service' in value "http://${rpc.account-service}"
可以看到显示占位符rpc.account-service并没解析成我在application.yaml中定义的http://account-service
rpc:
account-service: http://account-service
一般遇到这种情况,因为之前是能够正常启动的,并且我没有对项目作什么修改,大概率怀疑是编译器抽风了(顺带一提,我用的是Idea2017.2.7版本)。
为了解决这个问题,一般考虑用重启解决(重启能够解决50%的问题) 第一步,清空编译缓存,我的环境是win10,mac系统可能有所不同,但八九不离十问题不大。 点击 Invalidate Caches / Restart 这个按钮,再点击Invalidate and Restart
如果还是有问题的话,尝试重新编译项目
mvn clean
mvn compile
第二步可能需要根据项目的不同,再调整调整 一般做完这两步,项目就能正常启动了。 QwQ以后在遇到新的情况,接着更。
|