美文网首页
更新基于Spring Boot 2.6.X的 Spring Cl

更新基于Spring Boot 2.6.X的 Spring Cl

作者: EasyNetCN | 来源:发表于2021-12-03 06:59 被阅读0次

基于Spring Boot 2.6.1的Spring Cloud 2021.0.0发布了,需要注意两点:

项目的循环注入

假如项目中有循环依赖注意,需要添加配置:spring.main.allow-circular-references: true

内置数据配置

假如项目使用了数据库,需要添加配置:spring.datasource.embedded-database-connection: none

spring:
  main:
    allow-circular-references: true
  datasource:
    embedded-database-connection: none

相关文章

网友评论

      本文标题:更新基于Spring Boot 2.6.X的 Spring Cl

      本文链接:https://www.haomeiwen.com/subject/wskpxrtx.html