springboot整合eurake pom配置
时间: 2023-02-21 07:26:50 浏览: 98
springboot 集成eureka 详细配置.docx
要在Spring Boot项目中整合Eureka,需要在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
```
然后在配置文件(如application.properties或application.yml)中添加Eureka服务器配置:
```
server.port=8761
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
```
最后,在Spring Boot应用程序主类中添加@EnableEurekaServer注解,以启用Eureka服务器端功能:
```
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
```
完成以上配置后,即可启动Eureka服务器。
阅读全文