Spring Cloud 系列五《Nacos+gateway(配置中心+网关)》

0、前言

  • 上篇已经集成Nacos,本篇把网关(Spring Cloud Gateway)加上

1、代码截图

  • 代码是在上篇基础上修改的,有些重叠的就不贴代码了。
    Spring Cloud 系列五《Nacos+gateway(配置中心+网关)》_第1张图片

2、Common

  • 增加了一个通用服务,主要用来引入通用包
  • pom:注意openfeignloadbalancerbootstrap,都是不可获取的。
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-discovery
        
        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-config
        
        
        
            org.springframework.cloud
            spring-cloud-starter-bootstrap
        
        
        &l

你可能感兴趣的:(微服务,spring,cloud,spring,spring,boot,java)