springboot与springcloud升级2.X后@EnableEurekaServer无效问题解决

在springboot 1.x中使用

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka-server</artifactId>
    <version>1.4.7.RELEASE</version>
</dependency>

但在springboot 2.x后开始maven repoitory中可以看到springboot与springcloud升级2.X后@EnableEurekaServer无效问题解决_第1张图片
所以使用引入netflix-eureka-server即可

		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
		</dependency>

你可能感兴趣的:(spring,boot)