当前位置:   article > 正文

springboot3.2 mybatis-plus Invalid value type for attribute ‘factoryBeanObjectType‘ java.lang.String_invalid value type for attribute 'factorybeanobjec

invalid value type for attribute 'factorybeanobjecttype': java.lang.string

gradle 构建springboot3.2 mybatis-plus 报错Invalid value type for attribute ‘factoryBeanObjectType’ java.lang.String

问题: 尝鲜 springboot3.2, mybatis-plus版本3.5.4.1,gradle 构建,启动时报错:

在这里插入图片描述

原因 mybatis-plus 引入的 mybatis-spring jar 包不适配最新的 springboot3.2 版本

解决办法:排除mybatis-plus 引入的 mybatis-spring jar, 单独引入高版本mybatis-spring
implementation ('com.baomidou:mybatis-plus-boot-starter:3.5.4.1') {
  exclude group: 'org.mybatis', module: 'mybatils-spring'
}
implementation 'org.mybatis:mybatis-spring:3.0.3'
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/1018805
推荐阅读
相关标签
  

闽ICP备14008679号