SpringCloud项目在ide运行和mvn clean package java-jar运行结果不一样

发布于 2022-09-12 01:50:21 字数 998 浏览 11 评论 0

我添加了spring-boot-starter-actuator在pom里面,并且放开bus-refresh
在idea里面运行时,控制台打印
2020-03-25 16:06:00.675 INFO 18308 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'

curl -X GET http://localhost:13000/actuator
{"_links":{"self":{"href":"http://localhost:13000/actuator","templated":false},"bus-refresh":{"href":"http://localhost:13000/actuator/bus-refresh","templated":false},"bus-ref
resh-destination":{"href":"http://localhost:13000/actuator/bus-refresh/{destination}","templated":true}}}

通过mvn clean package打包,然后java -jar xx.jar ,控制台打印
2020-03-25 15:41:45.576 INFO 9380 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 0 endpoint(s) beneath base path '/actuator'

curl -X GET http://localhost:13000/actuator
{"_links":{"self":{"href":"http://localhost:13000/actuator","templated":false}}}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文