SpringCloud-服务管理中心Admin

注:本实例使用springboot版本:1.5.9,springCloud版本:E。


上一节我们已经启动了eureka-server,现在让我们向注册中心注册一个服务。

在IDEA中创建一个项目,服务名为admin-server,在pom文件中添加依赖:

        
			de.codecentric
			spring-boot-admin-server
			1.5.0
		
		
			de.codecentric
			spring-boot-admin-server-ui
			1.5.0
		
		
			org.springframework.boot
			spring-boot-starter-actuator
		

		
			org.springframework.cloud
			spring-cloud-starter-eureka
			1.3.2.RELEASE
		
		
			de.codecentric
			spring-boot-admin-starter-client
			1.5.0
		

在启动类上添加注解@EnableAdminServer 和@EnableDiscoveryClient,作为eureka的客户端,也作为admin的服务端。admin会从eureka-server的注册列表拉取注册信息进行管理。

在bootstrap.properties中添加如下配置:

#服务管理中心端口号
server.port=7071
#服务名称
spring.application.name=admin-server
#管理中心主机名
admin.hostname=192.168.1.7
#管理中心地址
spring.boot.admin.url=http://${admin.hostname}:${server.port}
#服务注册中心IP
eureka.ip=192.168.1.7
#服务注册中心端口
eureka.port=7070
#服务注册中心地址
eureka.client.service-url.defaultZone=http://${eureka.ip}:${eureka.port}/eureka/

现在点击启动,在浏览器输入:http://192.168.1.7:7071,查看到如下页面:

SpringCloud-服务管理中心Admin_第1张图片

现在admin-server已经成功注册到eureka上了。

SpringCloud-服务管理中心Admin_第2张图片

 

你可能感兴趣的:(SpringCloud-服务管理中心Admin)