Spring Cloud - Eureka版-学习理解
Spring Cloud Eureka 是 Spring Cloud 体系中用于服务注册与发现的组件。它使用 Netflix Eureka 来实现服务注册中心。
以下是一个使用 Spring Cloud Eureka 的简单示例:
- 添加依赖到你的
pom.xml
:
<dependencies>
<!-- Spring Cloud 依赖 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
- 配置 Eureka Server:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
在 application.properties
或 application.yml
中配置 Eureka 服务端:
server:
port: 8761
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
启动 Eureka Server 后,可以通过访问 http://localhost:8761
来查看 Eureka 的管理页面。
以上代码创建了一个简单的 Eureka 服务注册中心。在实际应用中,你还需要创建服务提供者(Eureka Clients),将它们注册到 Eureka 服务器中,并使用服务发现来消费这些服务。
评论已关闭