# springcloud-demo **Repository Path**: chencq/springcloud-demo ## Basic Information - **Project Name**: springcloud-demo - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## actuator ``` org.springframework.boot spring-boot-starter-actuator ``` ### 1. info - http://localhost:8080/actuator/info ``` 1.1 pom.xml添加 org.springframework.boot spring-boot-maven-plugin build-info 1.2 application.properties文件中配置: endpoints.actuator.enabled=true ``` ### 2. health - http://localhost:8000/actuator/health ``` 1.2 application.properties文件中配置: endpoints.actuator.enabled=true ```