【轉】從 Spring 專案中禁用 nacos

z5337發表於2024-04-23

轉自:https://blog.csdn.net/weixin_44828157/article/details/127723188

在 application.yml 中新增以下配置即可:

spring:
  cloud:
    nacos:
      config:
        enabled: false
        refresh-enabled: false
      discovery:
        enabled: false
        instance-enabled: false

相關文章