Spring Cloud Eureka快速搭建:微服务注册中心的配置步骤
以下是使用Spring Cloud Eureka快速搭建微服务注册中心的步骤和示例代码:
- 创建一个新的Spring Boot项目,并添加Eureka Server依赖。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
- 在主应用类上添加
@EnableEurekaServer
注解来启用Eureka Server。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
- 在
application.properties
或application.yml
配置文件中配置Eureka Server。
# application.properties
spring.application.name=eureka-server
server.port=8761
eureka.instance.hostname=localhost
eureka.client.registerWithEureka=false
eureka.client.fetchRegistry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/
或者使用YAML格式:
# application.yml
spring:
application:
name: eureka-server
server:
port: 8761
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
- 启动项目,访问
http://localhost:8761/
,你将看到Eureka的管理界面。
以上步骤和代码足以创建一个基本的Eureka注册中心。根据具体需求,你可能需要进行额外配置,例如安全设置、高可用配置等。
评论已关闭