単純なマイクロサービスを取得してEurekaサーバーに登録し、Zuulプロキシをマイクロサービスに接続しようとしています。マイクロサービスをEurekaサーバーに登録しました。ただし、Zuulサービスを起動するたびに、Eurekaサーバーに登録されていないことがわかります。マイクロサービスにルーティングしようとすると、次の例外が発生します。
ロードバランサーにクライアントに使用可能なサーバーがありません:マイクロサービス
問題がどこにあるのかわかりません。どんな助けでも大歓迎です
以下は、これらの各コンポーネントのSpringBootクラスです。
マイクロサービスコンポーネント
MicroserviceApplication.Java
@SpringBootApplication(scanBasePackages = { "some.package.controller", "some.package.service" })
@EnableEurekaClient
@EnableJpaRepositories("some.package.repository")
@EntityScan("some.package.entity")
public class MicroserviceApplication {
public static void main(String[] args) {
SpringApplication.run(MicroserviceApplication.class, args);
}
}
bootstrap.yml
server:
port: 8090
info:
component: Core Services
spring:
application:
name: microservice
application.yml
eureka:
instance:
leaseRenewalIntervalInSeconds: 1
leaseExpirationDurationInSeconds: 2
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
healthcheck:
enabled: true
lease:
duration: 5
#some other logging and jpa properties below
Eurekaサーバーコンポーネント
EurekaServerApplication.Java
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
bootstrap.yml
spring:
application:
name: discovery-server
application.yml
server:
port: 8761
info:
component: Discovery Server
eureka:
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
instance:
hostname: localhost
server:
waitTimeInMsWhenSyncEmpty: 0
APIゲートウェイコンポーネント
ZuulGatewayApplication.Java
@SpringBootApplication
@EnableZuulProxy
public class ZuulGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(ZuulGatewayApplication.class, args);
}
@Bean
public ZuulGatewayPreFilter gatewayPreFilter() {
return new ZuulGatewayPreFilter();
}
}
bootstrap.yml
spring:
application:
name: api-gateway
application.yml
server:
port: 8888
info:
component: API Gateway
eureka:
instance:
leaseRenewalIntervalInSeconds: 1
leaseExpirationDurationInSeconds: 2
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
zuul:
routes:
microservice:
path: /microservice/**
serviceId: microservice
@EnableEurekaClient
を追加すると、この問題が解決しました。 ZuulアプリケーションがEurekaサーバーで検出可能になり、リクエストをルーティングできるようになりました。
@EnableEurekaClientをZuulアプリケーションクラスに追加する以外に、間違ったspring.application.nameがこのエラーの原因である可能性があります。