1. 克隆应用程序
git clone https://github.com/callicoder/spring-boot-actuator-demo.git
2. 使用maven构建并运行应用程序
mvn package
java -jar target/actuator-demo-0.0.1-SNAPSHOT.jar
或者,您可以直接运行应用程序而不像这样打包 -
mvn spring-boot:run
该应用程序将从 http://localhost:8080 开始运行。
所有执行器端点都可以通过 http://localhost:8080/actuator 访问。
一些执行器端点受到 Spring Security 的 HTTP 基本身份验证的保护。您可以使用用户名actuator
和密码actuator
进行 http 基本身份验证。