Spring Cloud学习笔记:Eureka简介,Eureka简单样例
// 导入Spring Cloud Eureka服务器的依赖
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server'
}
// 在Spring Boot应用的主类上添加@EnableEurekaServer注解
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
// 在application.properties或application.yml中配置Eureka服务器
application.properties:
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/
这个代码示例展示了如何创建一个简单的Spring Cloud Eureka服务器。首先,添加了必要的依赖。接着,在主类上使用@EnableEurekaServer
注解来指示这是一个Eureka服务器。最后,在配置文件中设置了Eureka服务器的端口、主机名以及其他必要的配置。这个例子是学习Spring Cloud Eureka服务发现的基础。
评论已关闭