Service Discovery


Eureka Service Discoveryプロジェクトの作成


VSCDEコマンドパレット(Ctrl+Shift+P)でSpring Initializerを実行
Search for Dependenciesの選択
  • Eureka Server Spring Cloud Discovery
  • ファイルの設定
    resources > application.属性ファイルを適用します.ymlに変更
    server:
       port: 8761
    
    spring:
        application:
            name: discoveryservice
    
    eureka:
        client:
            register-with-eureka: false
            fetch-registry: false
    添付ファイル@EnableEurekaServerの追加
    @SpringBootApplication
    @EnableEurekaServer
    public class DiscoveryserviceApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(DiscoveryserviceApplication.class, args);
    	}
    
    }
    実行
    http://127.0.0.1:8761/