actuator终结点列出了运行状况终结点,但对运行状况终结点的独立调用失败

s6fujrry  于 2021-07-23  发布在  Java
关注(0)|答案(0)|浏览(279)

我有一个spring启动应用程序,它添加了以下依赖项。

<dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>2.0.2.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
     <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
            <exclusions>
                <exclusion>
                    <artifactId>spring-boot-starter-logging</artifactId>
                    <groupId>org.springframework.boot</groupId>
                </exclusion>
            </exclusions>
     </dependency>
    </dependencies>

击中/执行器/端点时,我得到以下响应。
{​​​​​​​​"_“链接”:{​​​​​​​​"“自我”:{​​​​​​​​"href“:”http://ip:port/actuator,“模板化”:false}​​​​​​​​,"“健康”:{​​​​​​​​"href“:”http://ip:port/actuator/health,“模板化”:false}​​​​​​​​,"“信息”:{​​​​​​​​"href“:”http://ip:port/actuator/info“,”templated“:false}​​​​​​​​}​​​​​​​​}​​​​​​​​
类似地,在点击/info/端点时,我得到一个空的{}响应。
但是endpoint/health/不返回任何响应并继续加载。据我所知 /actuator/ , /actuator/info/ , /actuator/health/ 在添加执行器依赖项时默认启用。那么,为什么这对我的案子不起作用呢?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题