springCloud config refresh全局广播刷新报405

springCloud config refresh全局广播刷新报405,第1张

springCloud config refresh全局广播刷新报405

目录
  • 遇到的问题
  • 解决办法
  • 小结

遇到的问题

修改Github上配置文件后,通过curl -X POST "http://localhost:3344/actuator/bus-refresh"来进行动态刷新全局广播就会报405(这里的刷新路径是本地路径,具体的可根据实际项目地址来配)

原来的配置中心服务端的配置文件(application.yml)如下:

server:
  port: 3344

spring:
  application:
    name:  cloud-config-center #注册进Eureka服务器的微服务名
  cloud:
    config:
      server:
        git:
          uri: https://github.com.cnpmjs.org/******/springcloud-config.git #GitHub上面的git仓库名字
          ####搜索目录
          search-paths:
            - springcloud-config
      ####读取分支
      #label: master
      label: main
  #rabbitmq相关配置
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka

##rabbitmq相关配置,暴露bus刷新配置的端点
management:
  endpoints:
    web:
      exposure:
        include: "bus-refresh" # 指定刷新地址
解决办法

试了好多解决办法,最后发现是config的服务端没有指定从github拉取配置文件的放置路径,而这样就会放到系统(windows)默认的路径下,而项目在使用的时候又没法获取,所以导致全局广播报错
需要新加:
basedir: F:/learnjava/spring_cloud/2021/springcloud-config # 具体路径根据自己放的地址来配
修改配置中心的配置文件如下:

server:
  port: 3344

spring:
  application:
    name:  cloud-config-center #注册进Eureka服务器的微服务名
  cloud:
    config:
      server:
        git:
          uri: https://github.com.cnpmjs.org/******/springcloud-config.git #GitHub上面的git仓库名字
          ####搜索目录
          search-paths:
            - springcloud-config
          # 指定拉取配置文件放置路径,不然会出现curl -X POST "http://localhost:3344/actuator/bus-refresh"报405
          basedir: F:/learnjava/spring_cloud/2021/springcloud-config  # 具体路径根据自己放的地址来配
      ####读取分支
      #label: master
      label: main
  #rabbitmq相关配置
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka
修改Github上配置文件
management:
  endpoints:
    web:
      exposure:
        include: "bus-refresh" # 指定刷新地址
小结

这个问题花费了不少时间来解决,不过同样的问题可能导致的原因不同,仅供参考!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5691083.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存