随笔分类 - MyBatis
MyBatis学习
IllegalStateException: Property 'configuration' and 'configLocation' can not specified with together
摘要:原因:配置重复导致冲突 举例: application.yml mybatis: mapper-locations: classpath:mapper/*Mapper.xml type-aliases-package: com.mmdz.entity # sql 打印 configuration:
阅读全文
摘要:SpringBoot整合Mybatis分页 ?> 学习目的: 分页的好处就是减少数据的处理量 mybatis框架分页实现,常用得几种方式,最简单的就是 sql分页,利用原生的sql关键字limit来实现;(不推荐) 还有一种就是利用interceptor来拼接sql,实现和limit一样的功能;(不
阅读全文
摘要:SpringBoot整合Mybatis ?> 技术栈:springboot、mybatis、mysql || 学习目的: Springboot整合MyBatis基于Restful风格实现增删改查功能 1、项目结构 2、项目POM文件 pom.xml <?xml version="1.0" encod
阅读全文