欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【微服务】Springboot和ActiveMQ整合出现 Could not resolve placeholder 'xxx' in value "${xxx}"

程序员文章站 2022-06-01 09:12:40
...

1.出现问题

          Could not resolve placeholder 'mytopic' in value "${mytopic}" 可以看出是引入这个字段出现错误了。

2.问题分析

           查看配置文件,引用字段都没有问题

@Value("${mytopic}")
    private String myTopic;

最后发现 是appliction.yml 名字写错了。手欠呀。 

3.问题解决

【微服务】Springboot和ActiveMQ整合出现 Could not resolve placeholder 'xxx' in value "${xxx}"

【微服务】Springboot和ActiveMQ整合出现 Could not resolve placeholder 'xxx' in value "${xxx}"

4.参考资料

https://blog.csdn.net/zezezuiaiya/article/details/79172865