Mybatis 解決問題的記錄與博客
問題:mybatis 空值映射的問題
Mybatis在使用resultMap來映射查詢結果中的列,如果查詢結果中包含空值的列(不是null),則Mybatis在映射的時候,不會映射這個字段
https://www.oschina.net/question/1032714_224673 查詢 name,sex,age,數據庫中的age字段沒有值,Mybatis返回的map中只映射了 name和sex字段,而age字段則沒有包含。
測試ID :4facf3daa46b45eda1007b42d9a1e78f
https://blog.csdn.net/gebitan505/article/details/54929287 mybatis優雅的使用
https://blog.csdn.net/qincidong/article/details/76120968 分頁插件集成springboot
prostgreSQL
pagehelper:
helperDialect: sqlserver
reasonable: true
supportMethodsArguments: true
pageSizeZero: true
params: count=countSql
https://www.cnblogs.com/onetwo/p/7371778.html SpringBoot集成MyBatis的分頁插件PageHelper
<!-- 配置mybatis的分頁插件PageHelper -->
15 <plugins>
16 <!-- com.github.pagehelper為PageHelper類所在包名 -->
17 <plugin interceptor="com.github.pagehelper.PageHelper">
18 <!-- 設置數據庫類型Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六種數據庫 -->
19 <property name="dialect" value="mysql"/>
20 </plugin>
21 </plugins>
https://www.cnblogs.com/zheting/p/6707035.html springBoot啟動原理
Mybatis 解決問題的記錄與博客