踩坑记录:Property ‘sqlSessionFactory‘ or ‘sqlSessionTemplate‘ are required
修改前: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.0</version> <relativePath/> </parent> 修改后: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.7.RELEASE</version> <relativePath/> </parent>
只将mybatis-plus版本换成3.5.3也不会报错。看来是mybatis-plus3.5.3及以上的版本才能适配spring-boot-starter-parent3.0.0