第275天学习打卡(知识点回顾 springboot整合MyBatis操作)

Posted doudoutj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第275天学习打卡(知识点回顾 springboot整合MyBatis操作)相关的知识,希望对你有一定的参考价值。

知识点回顾

springboot整合MyBatis操作

1.配置模式

  • 全局配置文件
  • SqlSessionFactory:自动配置好了
  • SqlSession:自动配置了SqlSessionTemplate组合了SqlSession
  • @Import(AutoConfiguredMapperScannerRegistrar.class)
  • Mapper:只要我们写的操作MyBatis的接口标注了@Mapper就会被自动扫描进来

配置了private Configuration configuration; mybatis.configuration下面的所有,就相当于修改配置文件中的值

步骤:

  • 导入mybatis官方starter
  • 编写mapper接口,标注mapper注解
  • 编写sql映射文件并绑定mapper接口
  • 在application.yml中指定Mapper配置文件的位置,以及指定全局配置文件的信息(建议:配置在mybatis.configuration)

雷丰阳2021版SpringBoot2零基础入门springboot全套完整版(spring boot2)_哔哩哔哩_bilibili

以上是关于第275天学习打卡(知识点回顾 springboot整合MyBatis操作)的主要内容,如果未能解决你的问题,请参考以下文章

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第266天学习打卡(知识点回顾 springmvc支持的返回值)

第223天学习打卡(知识点回顾 线程池)

第265天学习打卡(知识点回顾 springboot 复杂参数)

第291天学习打卡(知识点回顾 LRU算法)