Service Discovery
2811 ワード
Eureka Service Discoveryプロジェクトの作成
VSCDEコマンドパレット(Ctrl+Shift+P)でSpring Initializerを実行
Search for Dependenciesの選択
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/
Reference
この問題について(Service Discovery), 我々は、より多くの情報をここで見つけました https://velog.io/@sidohigar/springboot2テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol