mybatis
LY破晓
越努力越幸运
展开
-
Pagehelper分页插件的使用
1.导入jar包2.在SqlSessionFactoryBean中配置PageHelper的分页插件3.业务层代码4.controller层代码5.结果展示6.配置信息说明:PageInterceptor实例中的参数,可以设置多个,具体参数以及参数介绍如下:参数:helperDialect=mysqlreasonable=truesupportMethodsArguments=trueparams=count=countSqlutoRuntimeDialect=true参原创 2020-09-27 17:11:13 · 259 阅读 · 0 评论 -
mybatis 嵌套查询子查询column传多个参数描述
原文:尊重原创mybatis 嵌套查询子查询column传多个参数如下:1、图解2、代码示例备注:注意,相同颜色的单词都是有关联的。<resultMap id="blogResult" type="Blog"> <association property="author" column="{id=author_id,likename=author_name}" javaType="Author" select="selectAuthor"/></result转载 2020-08-27 09:49:39 · 3134 阅读 · 0 评论 -
mybatis关于sql的CURD的错误总结
1.if判断问题,会出现持久化错误<if test="username != null and username != '' and username != ' '"></if>原因:做字符串非空判断的时候(username != ’ ')不能要2.between问题select 1 from sys_user<where> <if test="time1 != null and time2 != null"> time betwe原创 2020-07-31 10:43:56 · 151 阅读 · 0 评论 -
[解决]mybatis-plus使用jdk8的LocalDateTime 查询时报错
https://blog.csdn.net/lkh1992/article/details/90024829?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase转载 2020-06-29 16:52:26 · 1727 阅读 · 0 评论 -
springboot使用mybatis多数据源动态切换的实现
https://blog.csdn.net/twomr/article/details/79137056转载 2020-03-31 10:37:49 · 173 阅读 · 0 评论 -
Mybatis中使用JDK8的日期API
https://www.cnblogs.com/deolin/p/7812894.html注解是为了限定属性格式转载 2020-02-20 19:31:23 · 118 阅读 · 0 评论