[spring_cloud] eureka服务搭建

1、首先使用idea工具快速创建springboot工程,在pom.xml包中引入以下依懒
       
              org.springframework.cloud
              spring-cloud-starter-netflix-eureka-server
              2.1.1.RELEASE
       

2、其次在springboot启动类中,加入以下注解
        @EnableEurekaServer

 3、在resources下创建配置文件 application.yml中添加如下信息  
        spring:
          application:
              name: registry
        server:
           prot: 8761
        eureka:
           client:
              register-with-eureka: false
              fetch-registry: false

 在springboot启动类中,启动即可。
 

         


       

       

 


 

           

 

                 

 

你可能感兴趣的:(过眼云眼)