Spring Cloud 从入门到精通
在Spring Cloud中,服务注册与发现通常使用Spring Cloud Netflix的Eureka来实现。以下是一个简单的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配置文件:
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/
在这个例子中,我们创建了一个Eureka Server,它运行在8761端口,并且配置了Eureka客户端不向Eureka Server注册自己,也不去获取服务注册信息。这样的Eureka Server通常用于注册中心的单节点部署,适合开发和小型生产环境。
评论已关闭