11

RESTful サービスへのゲートウェイとして Spring Cloud と Zuul プロキシを使用しています。

ゲートウェイ アプリケーション (ポート 8080 で実行される Spring Boot Web アプリ) 関連コード:-

メインクラス:-

@SpringBootApplication
@EnableZuulProxy
public class WebfrontApplication extends WebMvcConfigurerAdapter {

    /**
     * @param args
     */
    public static void main(String[] args) {
        SpringApplication.run(WebfrontApplication.class, args);
    }
}

ズール マッピング:-

zuul:
  routes:
    customer:
      path: /customer/**
      url: http://localhost:9000/

上記の UI ゲートウェイ アプリケーションの起動中に、プロキシのマッピングが登録されていることをログで確認できます。

o.s.c.n.zuul.web.ZuulHandlerMapping      : Mapped URL path [/customer/**] onto handler of type [class org.springframework.cloud.netflix.zuul.web.ZuulController]

REST サービス (ポート 9000 で実行される Spring Boot Web アプリ) 関連コード:-

@RestController
@RequestMapping(value = "/customer")
public class CustomerController {

    @Autowired
    private CustomerService customerService;

    /**
     * Get List of All customers.
     * 
     * @return
     */
    @RequestMapping(value = "/list", method = RequestMethod.GET)
    public List<Customer> list(Principal principal) {
        return customerService.list();
    }
}

残りのクライアント (私の場合は POSTMAN) を使用すると、上記のエンドポイントから正常に応答を取得できます (認証トークンを処理した後)。

UI アプリケーションで AngularJS を使用して、REST エンドポイントからデータを取得しています。

関連コード:-

angular.module('customerModule').factory('customerService',function($http) {

    return {
        customerList : function(){
            // PROBLEM !!!!!
            // THIS CALL GIVES A 404 ERROR
            return $http.get('/customer/list');
        }
    };
});

上記の呼び出しは 404 エラーを返しています:- これは私の Chrome デバッガーが示すものです:-

Remote Address:127.0.0.1:8080
Request URL:http://localhost:8080/customer/list
Request Method:GET
Status Code:404 Not Found

リクエストヘッダー:-

Accept:application/json, text/plain, */*
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US,en;q=0.8,hi;q=0.6,ms;q=0.4
Cache-Control:no-cache
Connection:keep-alive
Cookie:SESSION=2e1ac330-fe41-4ff4-8efb-81eaec12c8d1
Host:localhost:8080
Pragma:no-cache
Referer:http://localhost:8080/
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36
X-Auth-Token:2e1ac330-fe41-4ff4-8efb-81eaec12c8d1

応答ヘッダー:-

Cache-Control:no-cache, no-store, max-age=0, must-revalidate
Content-Type:application/json; charset=UTF-8
Date:Fri, 20 Mar 2015 04:00:36 GMT
Date:Fri, 20 Mar 2015 04:00:36 GMT
Expires:0
Pragma:no-cache
Pragma:no-cache
Server:Jetty(9.2.9.v20150224)
Transfer-Encoding:chunked
X-Application-Context:bootstrap
X-Content-Type-Options:nosniff
X-Content-Type-Options:nosniff
X-Frame-Options:DENY
X-Frame-Options:DENY
X-XSS-Protection:1; mode=block
X-XSS-Protection:1; mode=block

ここで何が問題なのですか?マッピングが間違っていますか、それとも他に何か不足していますか?

解決した

受け入れられた回答によると、次のように変更すると、Zuul マッピングの変更が機能しました。

zuul:
 routes:
  resource:
   path: /customer/**
   url: http://localhost:9000/
   stripPrefix: false
4

2 に答える 2

13

リソース サーバーには "/list" のマッピングはありません (したがって、404 になります)。ルート宣言で stripPrefix=false を設定するか、バックエンドのリクエスト マッピングを「/」に変更する必要があります。

于 2015-03-20T07:01:21.803 に答える