本文介绍了Spring Boot v2.0.0.M2 Webflux和执行器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我无法使Actuator
与Spring Boot v2.0.0.M2
和Netty
一起使用. build.gradle
中使用了以下依赖项:
I'm not able to get Actuator
work with Spring Boot v2.0.0.M2
and Netty
. The following dependencies are used in the build.gradle
:
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-data-redis-reactive"
compile "org.springframework.boot:spring-boot-starter-webflux"
compile "org.springframework.boot:spring-boot-configuration-processor"
runtime "org.springframework.boot:spring-boot-devtools"
我在日志文件中也没有看到与Actuator
有关的信息.我想念什么吗?
I don't see information related to Actuator
in the log files as well.Do I miss something?
推荐答案
唯一缺少的是耐心:-)
The only thing you're missing is patience :-)
此版本计划于2.0.0.M4发行-同时,您可以订阅解决其中一个专门问题,并在合并后立即尝试使用SNAPSHOT版本.
This is scheduled for 2.0.0.M4 - in the meantime, you can subscribe to one of the dedicated issues and try things out with the SNAPSHOT version as soon as it's merged.
这篇关于Spring Boot v2.0.0.M2 Webflux和执行器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!