Invalid default: public abstract java.lang.Class org.mybatis.spring.annotation.MapperScan.factoryBea
启动springboot项目报错:
Invalid default: public abstract java.lang.Class org.mybatis.spring.annotation.MapperScan.factoryBea
原因:没有导入依赖MyBatis-Spring-Boot-Starter
导入依赖:
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.3</version>
</dependency>
MyBatis-Spring-Boot-Starter类似一个中间件,链接Spring Boot和MyBatis,构建基于Spring
Boot的MyBatis应用程序。
MyBatis的核心有两大组件:SqlSessionFactory 和 Mapper
接口。前者表示数据库链接,后者表示SQL映射。当我们基于Spring使用MyBatis的时候,也要保证在Spring环境中能存在着两大组件
MyBatis-Spring-Boot-Starter 将会完成以下功能:
1、Autodetect an existing DataSource
自动发现存在的DataSource
2、Will create and register an instance of a SqlSessionFactory passing that DataSource as an input using the SqlSessionFactoryBean
利用SqlSessionFactoryBean创建并注册SqlSessionFactory
3、Will create and register an instance of a SqlSessionTemplate got out of the SqlSessionFactory
创建并注册SqlSessionTemplate
4、Auto-scan your mappers, link them to the SqlSessionTemplate and register them to Spring context so they can be injected into your beans
自动扫描Mappers,并注册到Spring上下文环境方便程序的注入使用
转载请注明:Invalid default: public abstract java.lang.Class org.mybatis.spring.annotation.MapperScan.factoryBea | 胖虎的工具箱-编程导航