spring-cloud-gateway RewritePath GatewayFilter不能正常工作

时间:2018-06-05 10:52:27

标签: spring-boot spring-cloud spring-cloud-gateway

我正在开发一个spring-cloud-gateway应用程序。我使用RewritePath GatewayFilter处理某些pathvariable的地方。以下是我的下游api在端口80 上运行。

@GetMapping("/appname/event/{eventId}")
public Mono<ResponseEntity> getEventTimeOutWithPathVariable(
        @RequestHeader(name = "customerId") UUID customerId,
        @PathVariable(name = "eventId") String eventId) {
    Map<String, Object> map = new LinkedHashMap<>();
    map.put("customerId", customerId);
    map.put("eventId", eventId);
    return Mono.just(new ResponseEntity(map, HttpStatus.OK));
}

在我的网关应用程序中,过滤器配置如下:

- id: api_timeout_route
  uri: http://localhost/appname/event/
  predicates:
  - Path=/withapitimeout/**
  filters:
  - Hystrix=apiTimeOut 
  - RewritePath=/withapitimeout/(?<segment>.*), /$\{segment}

但它不起作用。我做错了什么?我收到了以下日志。

Mapping [Exchange: GET http://localhost:8000/withapitimeout/306ac5d0-b6d8-4f78-bde8-c470478ed1b1] 
to Route{id='api_timeout_route', uri=http://localhost:80/appname/event/

主要是路径变量没有被重写。有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

我不是专家,但您可以尝试这样的事情:

- id: api_timeout_route
  uri: http://localhost
  predicates:
  - Path=/withapitimeout/**
  filters:
  - Hystrix=apiTimeOut 
  - RewritePath=/withapitimeout/(?<segment>.*), /appname/event/$\{segment}

让我知道;)