从Spring Boot 2.2.x升级2.6.x,Spring Cloud升级2021.0.0
- 默认禁用循环依赖,使用
spring.main.allow-circular-references=true
允许支持循环依赖(很长时间项目了)。 - 2.5.x开始默认禁用了actuator的
/info
端点。从2.3.x开始支持使用/health/liveness
、/health/readiness
支持k8s健康探测,使用management.endpoint.health.probes.enabled=true
开启。 - error 页面(或者json)默认不显示
message
字段,从2.3.x开始。使用server.error.include-message=always
开启。
网友评论