Skip to content

Instantly share code, notes, and snippets.

@jc-lab
jc-lab / TestableGatewayFilter.java
Last active April 13, 2021 04:18
spring-cloud-gateway환경에서 도메인에 따라 특정 서비스에 대해 테스트서버로 연결합니다
package your.package;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.cloud.gateway.filter.GatewayFilterChain;
import org.springframework.cloud.gateway.filter.GlobalFilter;
import org.springframework.cloud.gateway.route.Route;
import org.springframework.cloud.gateway.support.ServerWebExchangeUtils;
import org.springframework.core.Ordered;
@jc-lab
jc-lab / uvw-test.md
Last active July 8, 2021 03:05
uvw 테스트

코드

서버

$ nc -l -p 1234

클라이언트