Spring Cloud之注册中心 Eureka
在Spring Cloud中,Eureka是一个服务注册和发现模块。以下是一个使用Eureka作为服务注册中心的简单示例。
- 首先,创建一个Spring Boot项目,并添加Eureka Server依赖。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
- 在
application.properties
或application.yml
中配置Eureka Server。
server:
port: 8761
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
- 启动类上添加
@EnableEurekaServer
注解。
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);
}
}
以上代码创建了一个基本的Eureka服务注册中心。访问http://localhost:8761/
可以看到Eureka的管理页面。
评论已关闭