mybatis
gb4215287
这个作者很懒,什么都没留下…
展开
-
MyBatis-Plus - 条件构造器Wrapper
mysqlbatis-plus转载 2023-06-30 13:52:05 · 656 阅读 · 0 评论 -
Mybatis-Plus中and()和or()的使用与原理详解
Mybatis-Plus中and()和or()的使用与原理详解转载 2022-10-20 09:39:19 · 8479 阅读 · 0 评论 -
MyBatis 使用PageHelper分页不起作用
mybatis使用pagehelper转载 2022-10-20 09:37:18 · 515 阅读 · 0 评论 -
Mybatis-plus 动态条件查询QueryWrapper的使用
mybatisplus querywrapper转载 2022-10-18 09:44:17 · 8118 阅读 · 0 评论 -
MybatisPlus like模糊查找
MybatisPlus like模糊查找转载 2022-10-18 09:40:52 · 1073 阅读 · 0 评论 -
记录使用mybatis-plus时,使用 orderBy 时遇到的一个问题
mybatisplus querywrapper转载 2022-10-18 09:38:58 · 2528 阅读 · 0 评论 -
mybatis-plus返回查询总记录数方式(亲测)
mybatis-plus查询总条数转载 2022-10-18 09:35:38 · 8104 阅读 · 1 评论 -
MybatisPlus之QueryWrapper与LambdaQueryWrapper的用法及区别
mybatisplus转载 2022-10-17 14:56:02 · 1583 阅读 · 0 评论 -
MybatisPlus之QueryWrapper与LambdaQueryWrapper的用法及区别(亲测)
MybatisPlus之QueryWrapper与LambdaQueryWrapper转载 2022-10-17 14:54:52 · 1328 阅读 · 0 评论 -
mybatis plus in方法使用(亲测)
mybatis plus使用转载 2022-10-09 19:12:55 · 590 阅读 · 0 评论 -
mybatis plus list 怎么desc倒序
mybatis plus list 怎么desc倒序原创 2022-10-08 18:45:03 · 686 阅读 · 0 评论 -
mybatis plus list 怎么desc倒序
mybatis plus list 怎么desc倒序原创 2022-10-08 18:43:57 · 725 阅读 · 0 评论 -
MyBatisPlus大于等于、小于等于等函数
MyBatisPlus大于等于写法原创 2022-09-15 15:49:57 · 1045 阅读 · 0 评论 -
mybatisplus-UpdateWrapper使用(亲测)
mybatis plus转载 2022-09-13 18:55:15 · 1267 阅读 · 0 评论 -
如何解决mybatis-plus添加数据时id自增问题(亲测)
解决mybatis-plus添加数据时id自增问题转载 2022-08-22 18:56:09 · 21091 阅读 · 0 评论 -
mybatis中LIKE模糊查询的几种写法以及注意点(亲测第三种CONCAT()函数的)
mybatis中对于使用like来进行模糊查询的几种方式:(1)使用${...}注意:由于$是参数直接注入的,导致这种写法,大括号里面不能注明jdbcType,不然会报错org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'VARCHAR' in '转载 2022-02-11 14:49:38 · 700 阅读 · 0 评论 -
Mybatis if test 中int integer判断非空的坑
Mybatis 中,alarmType 是int类型。如果alarmType 为0的话,条件判断返回结果为false,其它值的话,返回true。1 <if test="alarmType != null and alarmType != ''">2 alarm_type=#{alarmType},3 </if>if(!zxyf.equals("")){pd.put("zxyf", Convert.filterInteger(zxyf));}<转载 2022-01-12 14:15:23 · 1524 阅读 · 0 评论 -
mybatis转义符(亲测)
转义 符号> > 等于 ﹤![CDATA[> ]]>< < 等于 ﹤![CDATA[ < ]]><= <=>= &...转载 2021-10-19 16:52:56 · 232 阅读 · 0 评论 -
解决查询时报的cannot be cast to com.credithc.enjoy.manager.OrderResp错误
报的错误如下所示:14:30:54.637|ERROR|http-nio-8094-exec-4|127.0.0.1|f6c45349d812457bbb5e42bc3a1bc09d|1.0|com.credithc.enjoy.manager.controller.ManagePeriodOrderController.orderDetails[55]|ManagePeriodOrderController orderDetails errorjava.lang.ClassCastException原创 2021-09-11 14:48:10 · 3358 阅读 · 0 评论 -
mybatis中大于等于小于等于的写法
第一种写法(1):原符号 < <= > >= & ' "替换符号 < <= > >= & ' "例如:sql如下:create_date_time >= #{startTime} and create_date_time &a...转载 2021-08-18 14:26:01 · 516 阅读 · 0 评论 -
Mybatis 动态sql语句(if标签和where标签)
功能:根据性别和名字查询用户查询sql语句:SELECT id, username, birthday, sex, address FROM `user` WHERE sex = 1 AND username LIKE '%张%'mybatis动态sql:Mapper.xml文件配置sql如下:<!-- 根据条件查询用户 --><select id="queryUserByWhere" parameterType="user" resultType="user">转载 2021-08-17 14:55:01 · 182 阅读 · 0 评论 -
mybatis 中 if else 用法
mybaits 中没有 else 要用 chose when otherwise 代替下面就是MyBatis中的if....else...表示方法<choose> <when test=""> //... </when> <otherwise> //... </otherwise></choose>例子<select id="fi转载 2021-08-17 14:53:39 · 56987 阅读 · 0 评论