欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring cloud部署问题记录

程序员文章站 2024-03-20 22:53:28
...
  • 配置端口号不生效:yml格式value前必须加空格。
// 错误代码
server:
  port:8000
//正确代码
server:
  port: 8000

-配置management.endpoints.jmx.exposure.include=*不生效,yml文件value符号要使用引号括起来

// 错误代码
management:
  endpoint:
    health:
      show-details: always
  endpoints:
    jmx:
      exposure:
        include: *
//正确代码
management:
  endpoint:
    health:
      show-details: always
  endpoints:
    jmx:
      exposure:
        include: "*"
相关标签: springCloud