Springboot整合Mybatis
引入依赖
mybatis-spring-boot-starter依赖:
自动检测现有的DataSource(一般配置在application.properties中)
创建并注册SqlSessionFactory的实例,该实例使用SqlSessionFactoryBean将DataSource作为输入进行传递
自动扫描mappers,注册到Spring上下文
也就是说,使用了该sta...
阅读全文…