码迷,mamicode.com
首页 > 编程语言 > 详细

二、Spring Boot基础

时间:2020-02-02 19:18:56      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:-name   org   boot   depend   检查   资源   stat   nbsp   idt   

【学习Spring Boot基础,创建Spring Boot项目,讲解Spring Boot的配置,是学习Spring Cloud Alibaba的必知必会.

Spring Boot基础

快速创建应用  https://www.cnblogs.com/my-program-life/p/11592838.html

Spring Boot基础知识  https://www.cnblogs.com/my-program-life/p/11958428.html

补充知识: Spring Boot Actuator监控

pom.xml

      <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

 

技术图片

监控指示器HealthIndicators

技术图片

 常用端点

技术图片

所有端点情况 https://docs.spring.io/spring-boot/docs/2.0.0.M3/reference/htmlsingle/#production-ready-endpoints

健康检查

技术图片

/health 
作用:健康检查
status取值情况
UP:正常
DOWN :遇到了问题,不正常
OUT_OF_SERVICE:资源未在使用,或者不该去使用
UNKNOWN: 未知

显示health端点的详情

application.properties

# 显示health端点的详情
management.endpoint.health.show-details=always

技术图片

 info信息

技术图片

 配置

# 描述应用
info.app-name=spring-boot-demo
info.author=czy
info.email=XXXXX@com

技术图片

激活所有的actuator端点

# 激活所有的actuator端点
management.endpoints.web.exposure.include=*

技术图片

激活actuator指定端点 

# 激活actuator个别端点
management.endpoints.web.exposure.include=metrics,health

技术图片

 

二、Spring Boot基础

标签:-name   org   boot   depend   检查   资源   stat   nbsp   idt   

原文地址:https://www.cnblogs.com/my-program-life/p/12253009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!