微服务入门---SpringCloud
在Spring Cloud中,服务注册与发现是通过Eureka来实现的。以下是创建Eureka服务器的步骤:
- 创建一个新的Spring Boot项目,并添加Eureka服务器依赖。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
- 在主应用类上添加
@EnableEurekaServer
注解来启用Eureka服务器。
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服务器。
# application.properties
spring.application.name=eureka-server
server.port=8761
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
启动Eureka服务器后,其他微服务可以将自己注册到这个Eureka服务器上,实现服务的注册与发现。
评论已关闭