📅  最后修改于: 2020-11-11 05:45:12             🧑  作者: Mango
Spring Boot Actuator提供了安全的端点来监视和管理您的Spring Boot应用程序。默认情况下,所有执行器端点都是安全的。在本章中,您将详细了解如何为应用程序启用Spring Boot执行器。
要为您的Spring Boot应用程序启用Spring Boot执行器端点,我们需要在我们的构建配置文件中添加Spring Boot Starter执行器依赖项。
Maven用户可以在pom.xml文件中添加以下依赖项。
org.springframework.boot
spring-boot-starter-actuator
Gradle用户可以在build.gradle文件中添加以下依赖项。
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
在application.properties文件中,我们需要禁用执行器端点的安全性。
management.security.enabled = false
YAML文件用户可以在application.yml文件中添加以下属性。
management:
security:
enabled: false
如果要使用单独的端口号来访问Spring Boot Actutator端点,请在application.properties文件中添加管理端口号。
management.port = 9000
YAML文件用户可以在application.yml文件中添加以下属性。
management:
port: 9000
现在,您可以创建一个可执行的JAR文件,并使用以下Maven或Gradle命令运行Spring Boot应用程序。
对于Maven,您可以使用以下命令-
mvn clean install
在“ BUILD SUCCESS”之后,您可以在目标目录下找到JAR文件。
对于Gradle,您可以使用以下命令-
gradle clean build
在“ BUILD SUCCESSFUL”之后,您可以在build / libs目录下找到JAR文件。
现在,您可以使用以下命令运行JAR文件-
java –jar
现在,该应用程序已在Tomcat端口8080上启动。请注意,如果指定了管理端口号,则同一应用程序将在两个不同的端口号上运行。
下面给出了一些重要的Spring Boot Actuator端点。您可以在Web浏览器中输入它们并监视您的应用程序行为。
ENDPOINTS | USAGE |
---|---|
/metrics | To view the application metrics such as memory used, memory free, threads, classes, system uptime etc. |
/env | To view the list of Environment variables used in the application. |
/beans | To view the Spring beans and its types, scopes and dependency. |
/health | To view the application health |
/info | To view the information about the Spring Boot application. |
/trace | To view the list of Traces of your Rest endpoints. |