首页 > 其他分享 >springboot Failed to bind properties under 'mybatis-plus.configuration' to com.baomidou.my

springboot Failed to bind properties under 'mybatis-plus.configuration' to com.baomidou.my

时间:2022-08-23 16:47:04浏览次数:86  
标签:core mybatisplus springboot Failed plus mybatis baomidou configuration

启动springboot时出现错误

Failed to bind properties under 'mybatis-plus.configuration' to com.baomidou.mybatisplus.core.MybatisConfiguration

是因为配置文件.yml

mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.log4j2.Log4j2LoggerImpl---错了
map-underscore-to-camel-case: true
修改成

mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
map-underscore-to-camel-case: true

问题解决

标签:core,mybatisplus,springboot,Failed,plus,mybatis,baomidou,configuration
From: https://www.cnblogs.com/tangtongxue/p/16616802.html

相关文章