
Mybatis
文章平均质量分 51
徐州蔡徐坤
学习时长两年半,喜欢唱跳rap篮球的java后端开发
展开
-
使用MyBatis的动态SQL注解实现实体的CRUD操作
在使用MyBatis进行数据库操作时,动态SQL注解提供了一种优雅的方式来编写动态SQL语句。MyBatis 3.x 版本提供了以下四个CRUD的高级注解:@SelectProvider:用于构建动态查询SQL@InsertProvider:用于构建动态新增SQL@UpdateProvider:用于构建动态更新SQL。@DeleteProvider:用于构建动态删除SQL。此外,我们将与MyBatis Plus中的`@Select`注解进行对比,展示MyBatis动态SQL注解的优势和灵活性。原创 2024-06-21 17:23:18 · 2247 阅读 · 5 评论 -
解决WARN:Skipping MapperFactoryBean with name ‘xxxBeanMapper‘ and ‘com.xxx.xxxMapper‘ mapperInterface
解决:Skipping MapperFactoryBean with name 'xxxMapper' and 'xxx.xxx.xxx.mapper.xxxxxMapper' nterface. Bean already defined with the same name!若依项目启动时控制台打印出以下WARN 日志,`Bean already defined with the same name`日志信息大意就是Bean重复注入原创 2023-05-26 09:03:28 · 10230 阅读 · 0 评论 -
mybatis的内置类枚举和使用自定义枚举类解决自动装载问题
springboot使用mybatis时查询枚举值字段不能自动装载的问题,报错信息如下:> nested exception is org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column 'use_status' from result set. Cause: java.lang.IllegalArgumentException: No enum constant com.cxstar.c.原创 2022-07-09 21:38:16 · 2118 阅读 · 0 评论 -
mybatisplus 如何使用distinct去重查询
记录下mybatisplus中distinct的查询语句原创 2022-06-28 18:10:50 · 14866 阅读 · 0 评论 -
MyBatis-Plus 查询报错 ### Error querying database. Cause java.lang.IndexOutOfBoundsException Index 2,
问题描述mapper中的sql@Select({"<script>", "SELECT e.`name` as name ,SUM(mp.musk_yield) as muskYield " + "FROM `musk_product` mp,enterprise e " + "where mp.enterprise_id=e.id " + "and mp.get_musk_dat原创 2022-03-27 23:31:50 · 1567 阅读 · 0 评论 -
MyBatis-Plus updateById方法更新不了空字符串null解决方法
1 问题描述在用mybatis-plus封装的updateById方法来更新数据时,想把一个字段设置为null值,但是发现更新后数据没有为null还是原来的值,这是因为mybatis-plus在更新的时候做了null判断,默认不更新为null的传参。2 解决方法(1)在实体类对应的字段上加注解@TableField(strategy=FieldStrategy.IGNORED),忽略null值的判断,例如/** * 治愈时间 */@TableField(updateStrategy = Fie原创 2022-03-27 23:26:42 · 1511 阅读 · 0 评论 -
mybatis plus报错问题:Caused by java.sql.SQLException Parameter index out of range (5 number of param
报错信息Caused by java.sql.SQLException Parameter index out of range (5 number of param问题描述:在mapper中的selected中希望执行时间的过滤,代码如下"<when test='startDate!=null'>"," and foal_date >= '#{startDate}' ","</when>","<when test='endDate!=null'&原创 2022-03-27 23:24:21 · 1309 阅读 · 0 评论 -
mybatis plus使用 in 语句
记录一下使用mybatis plus 查询时使用in关键字的坑@Select({"<script>", "SELECT round( ifnull( sum( cny_pirce ), 0 ), 2 ) AS total", "FROM `data` WHERE id IN ", "<foreach item='item' index='index' collection='dataIdListStr' open='(' separator原创 2022-03-27 23:20:31 · 2146 阅读 · 0 评论 -
Mybatis实现简单的CURD操作
1.项目架构需要的jar包com.pojo.Grade.java(plain ordinary java object)实体类package com.pojo;public class Grade { private int id; private int grade; public int getId() { return id; } public void setId...原创 2019-04-25 13:39:43 · 822 阅读 · 0 评论