Spring Cloud入门-Gateway服务网关(Hoxton版本)
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.gateway.route.RouteLocator;
import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
@Bean
public RouteLocator customRouteLocator(RouteLocatorBuilder builder) {
return builder.routes()
.route("path_route", r -> r.path("/get")
.uri("http://httpbin.org"))
.route("host_route", r -> r.host("*.myhost.org")
.uri("http://httpbin.org"))
.route("rewrite_route", r -> r.host("*.rewrite.org")
.filters(f -> f.rewritePath("/foo/(?<segment>.*)", "/${segment}"))
.uri("http://httpbin.org"))
.build();
}
}
这段代码定义了一个Spring Cloud Gateway应用程序,并通过Java配置定义了三条路由规则:
path_route
:匹配路径为/get
的请求,并将请求转发到http://httpbin.org
。host_route
:匹配主机名符合*.myhost.org
模式的请求,并将请求转发到http://httpbin.org
。rewrite_route
:匹配主机名符合*.rewrite.org
模式的请求,使用rewritePath
过滤器重写路径,并将请求转发到http://httpbin.org
。
这个例子展示了如何使用Java配置来定义路由规则,而不是YAML配置文件。这在某些情况下可能更加灵活和方便。
评论已关闭