• spring cloud 2020.0.* 踩坑记录


    1.网关问题

    1.1 spring-cloud-starter-gateway和spring-boot-starter-web冲突问题
    • 问题:启动网关报错
    Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
    2019-12-31 10:26:35.211 ERROR 13124 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 
    
    ***************************
    APPLICATION FAILED TO START
    ***************************
    
    Description:
    
    Parameter 0 of method modifyRequestBodyGatewayFilterFactory in org.springframework.cloud.gateway.config.GatewayAutoConfiguration required a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' that could not be found.
    
    
    Action:
    
    Consider defining a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' in your configuration.
    
    
    Process finished with exit code 1
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 分析:gateway构建与Spring 5+,基于Spring boot 2.x响应式的、非阻塞式的API,同时,他支持webSockets和spring框架紧密集成
    • 原因:启动时默认使用了spring-boot-starter-web的内置容器,不支持非阻塞
    • 解决:如果gateway需要使用web,建议使用spring-webflux模块,webflux有一个全新的非阻塞的函数式Reactive Web框架,可以用来构建异步的、非阻塞的事件驱动服务,webflux参考这个大佬统一网关Gateway的解释
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-webflux</artifactId>
    </dependency>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    1.2 Spring Cloud Gateway + Nacos 无法发现服务
    • 问题:报503 Service Unavailable
    • 分析:springcloud2020弃用了Ribbon,因此Alibaba在2021版本nacos中删除了Ribbon的jar包,因此无法通过lb路由到指定微服务,出现了503情况。
    • 解决:手动加入loadbalancer
       <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-loadbalancer</artifactId>
            </dependency>
    
    • 1
    • 2
    • 3
    • 4

    2.spring cloud 2020配置文件 bootstrap.yml默认不生效

    • 问题:bootstrap.yml配置文件不生效
    • 分析:官方文档有提到,想用bootstrap,需要将spring.cloud.bootstrap.enabled设为true(注意这个必须设为系统变量或者环境变量)或 引入一个依赖:
    <dependency>
          <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-starter-bootstrap</artifactId>
    </dependency> 
    
    • 1
    • 2
    • 3
    • 4

    该依赖会引入一个名为 org.springframework.cloud.bootstrap.marker.Marker 的类 ,进而导致以下判断为假:
    在这里插入图片描述
    在这里插入图片描述
    进而执行后边的bootstrap文件内容加载逻辑。

    • 解决:引入一个依赖bootstrap
          <!-- bootstrap 启动器 -->
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-bootstrap</artifactId>
            </dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
  • 相关阅读:
    通过Nginx配置域名映射到本地项目
    windows下sqlite的.dll生成.lib和c编程
    Rethinking the Inception Architecture for Computer Vision--Christian Szegedy
    地理标志农产品质量安全风险评估及预警研究
    【网络技术】心跳机制(入门讲解)
    undefined reference to `timersub‘ 错误处理
    计算机毕业设计Java教师职称评定系统(源码+系统+mysql数据库+lw文档)
    linux上如何搭建Java环境
    如何搭建接口自动化测试框架?
    Java的深浅拷贝认识
  • 原文地址:https://blog.csdn.net/orange_bug/article/details/125085608