토리맘의 한글라이즈 프로젝트 logo 토리맘의 한글라이즈 프로젝트

스프링 클라우드 게이트웨이 공식 레퍼런스를 한글로 번역한 문서입니다.

전체 목차는 여기에 있습니다.


모든 route에는 다음과 같이 메타데이터를 통해 별도의 파라미터를 설정할 수 있다:

Example 65. application.yml

spring:
  cloud:
    gateway:
      routes:
      - id: route_with_metadata
        uri: https://example.org
        metadata:
          optionName: "OptionValue"
          compositeObject:
            name: "value"
          iAmNumber: 1

모든 메타데이터 프로퍼티는 다음과 같이 exchange에서 가져올 수 있다:

Route route = exchange.getAttribute(GATEWAY_ROUTE_ATTR);
// get all metadata properties
route.getMetadata();
// get a single metadata property
route.getMetadata(someKey);

Next :
Http timeouts configuration
route에 Http 타임아웃을 설정하는 방법, 디스커버리 서비스 레지스트리에 등록된 서비스를 기반으로 route를 만들고 predicate와 필터를 설정하는 방법 한글 번역

전체 목차는 여기에 있습니다.

<< >>

TOP