以下のガイドページは大きく、スプリングブートアプリケーションのリボンの基本ケースとして機能します。例えば -@LoadBalanced Restネストされたコンテキストエンドポイントを呼び出すためのテンプレート
https://spring.io/guides/gs/client-side-load-balancing/
の例では、とすぐに、エンドポイントのマッピングが入れ子になると動作を停止します
クラスレベルで@RestController
@SpringBootApplication
@RequestMapping(value = "/welcome") //<------------- ADDED --->
public class SayHelloApplication {
private static Logger log = LoggerFactory.getLogger(SayHelloApplication.class);
@RequestMapping(value = "/greeting")
public String greet() {
を
@RequestMapping(値= "/歓迎")
を追加し、
String greeting = this.restTemplate.getForObject("http://say-hello/greeting", String.class);
からクライアントで@LoadBalanced RestTemplateコールを変更
~
String greeting = this.restTemplate.getForObject("http://say-hello/welcome/greeting", String.class);
http://localhost:8090/welcome/greetingに直接アクセスしても正常に動作している間は、スタックトレースでコールが失敗します。 domain.com/x/y/z/p/qのような長くてネストされたURLエンドポイントへのリボン負荷要求を設定する適切な方法は何でしょうか?
スタックトレース:
java.lang.IllegalStateException: No instances available for say-hello
at org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.execute(RibbonLoadBalancerClient.java:79) ~[spring-cloud-netflix-core-1.1.4.RELEASE.jar:1.1.4.RELEASE]
at org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor.intercept(LoadBalancerInterceptor.java:46) ~[spring-cloud-commons-1.1.1.RELEASE.jar:1.1.1.RELEASE]
at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:85) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:69) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:596) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:557) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at org.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:264) ~[spring-web-4.2.6.RELEASE.jar:4.2.6.RELEASE]
at hello.UserApplication.hi(UserApplication.java:31) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_45]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_45]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_45]
at java.lang.reflect.Method.invoke(Method.java:497) ~[na:1.8.0_45]
リボンのみがホスト名を処理します。あなたのエラーは、リボンはsay-helloのインスタンスを見つけることができないと言います。あなたはそれをやり直しましたか?それは少しかかります。 – spencergibb
Eurekaにsay-helloサービスのインスタンスが登録されていることを確認してください。 –
ライブラリと指定されたリンクのサンプルコードに従って、say-hello.ribbon.eureka.enabled = falseとします。私は質問に明記された変更を行っただけです。与えられたURLがhttp:// say-hello/context(この例では動作します)ではhttp:// say-hello/context/sub-context /(スタックではない場合のみ)トレース) – nmadzharov