springboot中端点监管 endpoint actuator

Posted psy-code

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中端点监管 endpoint actuator相关的知识,希望对你有一定的参考价值。

1.pom文件

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.zy</groupId>
    <artifactId>spring-boot-monitor-demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>spring-boot-monitor-demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <!-- 端点监管 endpoint actuator -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <!-- web -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <!-- 热部署 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

2.application.yml文件


management:
security:
enabled: false
info:
app:
id: hello
version: 1.0.0
# 设置为true时,支持远程关闭服务:只需要发送post请求,后缀是shutdown即可,如:
# localhost:8080/shutdown
endpoints:
shutdown:
enabled: true
# 关闭所有端点
enabled: false
# 只留一个端点
beans:
enabled: true
# 定制endpoint的id或者访问路径
# beans:
# id: mybean
 

 3.端点相关信息
技术分享图片

 技术分享图片

 





















以上是关于springboot中端点监管 endpoint actuator的主要内容,如果未能解决你的问题,请参考以下文章

如何启用Spring Boot Actuator的所有Endpoints

如何启用Spring Boot Actuator的所有Endpoints

如何启用Spring Boot Actuator的所有Endpoints

springboot-actuator

SpringBoot2.x系列教程(七十)Spring Boot Actuator集成及自定义Endpoint详解

对actuator的管理端点进行ip白名单限制(springBoot添加filter)