spring-boot-admin与spring-boot和spring-cloud版本关系

先看下目前maven仓库的版本(截止到2021-11-04)

spring-boot-admin
在这里插入图片描述
spring-boot
在这里插入图片描述
spring cloud
在这里插入图片描述

对应关系

spring-boot-adminspring-bootspring-cloud
2.5.12.5.4
2.5.02.5.2
2.4.42.5.2
2.4.22.4.6
2.4.12.4.32020.0.1
2.4.02.4.0
2.3.12.3.3.RELEASE
2.3.02.3.2.RELEASEHoxton.SR7
2.2.32.2.7.RELEASEHoxton.SR4
2.2.02.2.1.RELEASEHoxton
2.1.62.1.6.RELEASEGreenwich.SR2
2.1.42.1.4.RELEASEGreenwich.SR1
2.1.32.1.3.RELEASEGreenwich
2.1.22.1.2.RELEASE
2.1.02.1.0.RELEASE
2.0.62.0.9.RELEASEFinchley.SR3
2.0.52.0.8.RELEASEFinchley.SR2
2.0.42.0.6.RELEASE
2.0.32.0.5.RELEASE
2.0.02.0.x.RELEASE
1.5.51.5.8.RELEASEEdgware.SR1
1.5.51.5.8.RELEASEDalston SR4
1.5.41.5.x.RELEASEDalston SR3
1.5.01.5.x.RELEASE
1.4.61.4.4.RELEASECamden.SR5
1.4.51.4.3.RELEASECamden.SR3
1.4.41.4.2.RELEASECamden.SR2
1.4.31.4.1.RELEASECamden
1.4.21.4.1.RELEASE
1.4.11.4.0.RELEASE
1.3.71.3.8.RELEASEBrixton.SR6
1.3.61.3.6.RELEASEBrixton.SR4
1.3.51.3.6.RELEASEBrixton.SR3
1.3.41.3.5.RELEASEBrixton.SR1
1.3.31.3.5.RELEASEBrixton
1.3.01.3.0.RELEASE
1.2.41.2.7.RELEASE
1.2.21.2.5.RELEASEAngel.SR3
1.2.11.2.3.RELEASE1.0.1.RELEASE
1.1.01.2.0.RELEASE
要将nacos和spring-boot-admin集成,需要进行以下步骤: 1. 在pom.xml中添加以下依赖: ```xml <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> <version>2.2.3</version> </dependency> ``` 2. 在application.properties中添加以下配置: ```properties spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848 # nacos服务地址 spring.application.name=spring-boot-admin-server # 应用名 server.port=8080 # 服务端口 spring.boot.admin.server.url=http://localhost:${server.port} # spring-boot-admin服务地址 spring.boot.admin.client.url=http://localhost:${server.port} # spring-boot-admin客户端地址 management.endpoints.web.exposure.include=* # 开启所有端点 ``` 3. 在启动类上添加@EnableDiscoveryClient和@EnableAdminServer注解: ```java @SpringBootApplication @EnableDiscoveryClient @EnableAdminServer public class SpringBootAdminApplication { public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } } ``` 4. 在需要监控的应用中添加spring-boot-starter-actuator依赖,并在application.properties中添加以下配置: ```properties spring.boot.admin.client.url=http://localhost:8080 # spring-boot-admin服务地址 spring.boot.admin.client.username=admin # 认证用户名 spring.boot.admin.client.password=admin # 认证密码 ``` 5. 启动nacos和spring-boot-admin服务,然后启动需要监控的应用,即可在spring-boot-admin控制台中查看应用的监控信息。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值