第276天学习打卡(知识点回顾 springboot整合mybatis-plus)
Posted doudoutj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第276天学习打卡(知识点回顾 springboot整合mybatis-plus)相关的知识,希望对你有一定的参考价值。
知识点回顾
springboot整合Mybatis-plus
自动配置
- MyBatisPlusAutoConfiguration配置类,MyBatisPlusProperties配置项绑定。mybatis-plus:xxx就是对mybatis-plus的定制
- SqlSessionFactory自动配置好,底层是容器中默认的数据源
- mapperLocations自动配置好的。有默认值。classpath* :/mapper/* * / *.xml;任意包的类路径下的所有mapper文件夹下任意路径下的所有xml都是sql映射文件。减一以后sql映射文件,放在mapper下
- 容器也自动配置好了SqlSessionTemplate
- @Mapper标注的接口也会被自动扫描;建议直接@MapperScane("")批量扫描即可
雷丰阳2021版SpringBoot2零基础入门springboot全套完整版(spring boot2)_哔哩哔哩_bilibili
以上是关于第276天学习打卡(知识点回顾 springboot整合mybatis-plus)的主要内容,如果未能解决你的问题,请参考以下文章
第300天学习打卡(知识点回顾 hashmap如何实现线程安全)
第300天学习打卡(知识点回顾 hashmap如何实现线程安全)
第266天学习打卡(知识点回顾 springmvc支持的返回值)