问题详情:java.lang.IllegalArgumentException: Invalid value type for attribute 'factoryBeanObjectType':
问题背景:
springboot 3.2.0
mybatis_plus:3.5.4.1
解决方法1(经验证):
导入mybatis-spring包即可
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>3.0.3</version>
</dependency>
解决方法2(未验证):
springboot 降级到3.1.x即可