java spring cloud eureka 简单实验
以下是一个简单的Spring Cloud Eureka服务注册中心的示例代码:
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
中,可以配置服务注册中心的基本属性,例如:
# application.yml
server:
port: 8761
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
这段代码创建了一个Eureka服务注册中心,并设置了默认的端口号为8761。服务注册中心不会向其他Eureka节点注册自己,也不会从其他节点获取注册信息,这是因为实验环境下我们通常不需要多节点同步服务信息。
评论已关闭