사용자 도구

사이트 도구


springframework:cloud_gateway

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
springframework:cloud_gateway [2019/03/01 14:08]
kwon37xi
springframework:cloud_gateway [2019/03/01 15:01]
kwon37xi
줄 2: 줄 2:
   * [[https://spring.io/projects/spring-cloud-gateway|Spring Cloud Gateway]]   * [[https://spring.io/projects/spring-cloud-gateway|Spring Cloud Gateway]]
   * Spring Boot / WebFlux / Reactor 기반의 Non Blocking API Gateway.   * Spring Boot / WebFlux / Reactor 기반의 Non Blocking API Gateway.
-  * [[java:zuul|Zuul - Edge Service]] 에 대응+  * [[java:zuul|Zuul - Edge Service]] 에 대응. Java/Spring 기반 개발자들에게는 Spring Cloud Gateway 가 더 나아 보인다.
   * Java Code 기반 Routing 설정 가능   * Java Code 기반 Routing 설정 가능
  
줄 19: 줄 19:
 route("httpbin", p -> p.path("/api/httpbin/**") route("httpbin", p -> p.path("/api/httpbin/**")
    .filters(f -> f.stripPrefix(2))    .filters(f -> f.stripPrefix(2))
- .uri(adCenterBaseUrl))+ .uri("http://httpbin.org:80))
 // '/api' - 1, '/httpbin' - 2 해서 2 path 건너뛰기 // '/api' - 1, '/httpbin' - 2 해서 2 path 건너뛰기
 </code> </code>
 +  * PATH Variable 정규표현식 ''localhost:8080/api/httpbin/get/123'' -> ''http://httpbin.org:80/get/123'', 단 ''/get/abc'' 는 거부됨<code java>
 +route("httpbin", p -> p.path("/api/httpbin/get/{num:[0-9]+}")
 +   .filters(f -> f.stripPrefix(2))
 + .uri("http://httpbin.org:80))
 +</code>
 +  * Path Rewrite : [[https://stackoverflow.com/questions/48632054/spring-cloud-gateway-2-0-forward-path-variable|java - Spring Cloud Gateway 2.0 forward path variable - Stack Overflow]]<code java>
  
 +route("userById", t -> t.path("/users/**")
 +  .filters(rw -> rw.rewritePath("/users/(?<segment>.*)", "/users/${segment}"))
 +  .uri("http://localhost:8080/users/"))
 +</code>
 ===== 참조 ===== ===== 참조 =====
   * [[https://spring.io/guides/gs/gateway/|Getting Started · Building a Gateway]]   * [[https://spring.io/guides/gs/gateway/|Getting Started · Building a Gateway]]
springframework/cloud_gateway.txt · 마지막으로 수정됨: 2021/11/09 09:27 저자 kwon37xi