一、创建一个新的maven模块(作为注册中心)
二、添加依赖和配置(这个步骤即完成了eureka注册中心的服务端配置)
1。在新模块的pom文件中引入依赖
<!-- eureka服务端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
2.在启动类上加@EnableEurekaServe注解
3.在配置文件中写配置(以下配置是为了将自己也作为一个服务注册)
server:
port: 10086 #服务端口
spring:
application:
name: eurekaserver #服务名称
eureka: #配置eureka
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/ #eureka的地址信息
三、服务注册(eureka客户端)
1.引入eureka-client依赖
在需要注册的服务(项目)pom文件中引入依赖
<!-- eureka客户端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
2。在application.yml中配置eureka地址
spring:
application:
name: *** #服务名称
eureka: #配置eureka注册中心
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka/ #此配置相当于把服务加入注册中心
标签:spring,配置,eureka,client,注册,Eureka,cloud From: https://www.cnblogs.com/wenchao-chaoge/p/17067257.html