这篇文章主要介绍了spring cloud gateway网关路由分配代码实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
专业领域包括成都网站建设、网站设计、商城网站建设、微信营销、系统平台开发, 与其他网站设计及系统开发公司不同,创新互联的整合解决方案结合了帮做网络品牌建设经验和互联网整合营销的理念,并将策略和执行紧密结合,为客户提供全网互联网整合方案。
1, 基于父工程,新建一个模块
2,pom文件添加依赖
org.springframework.cloud spring-cloud-starter-gateway com.alibaba.cloud spring-cloud-starter-alibaba-nacos-discovery
3,添加配置
server: port: 9091 spring: application: name: gateway3 cloud: nacos: discovery: server-addr: localhost:8848 namespace: c22e5019-0bee-43b1-b80b-fc0b9d847501 register-enabled: false gateway: routes: - id: demo_route uri: lb://demo predicates: - Path=/demo/** - id: demo2_test uri: lb://demo2 predicates: - Path=/user/**
4,编写启动类
@SpringBootApplication @EnableDiscoveryClient public class Gateway3Application { public static void main(String[] args) { SpringApplication.run(Gateway3Application.class, args); } }
5,访问http://localhost:9091/demo或http://localhost:9091/demo2路由到指定的服务
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。