【持续更新】Mybatis常用代码汇总

目录

通用

[#{} 和 ${}](#{} 和 ${})

返回类型

查询

sql处理

in数组处理

if语句

[choose when](#choose when)

[association 一对一关联查询](#association 一对一关联查询)

日期格式


通用

#{} 和 ${}

MyBatis 的xml映射配置文件中,动态传参有#{}和${}两种方式

1)#{}:动态解析 -> 预编译 -> 执行

2)${}:动态解析 -> 编译 -> 执行

1)变量替换后,#{} 对应的变量自动加上单引号 ''

2)变量替换后,${} 对应的变量不会加上单引号 ''

1)#{} 能防止sql 注入

2)${} 不能防止sql 注入

使用方式相同

(1)public User getUser(String username,String password);

<select id="getUser" resultType="com.User">select * from t user where username=#{arg0} and password=#{arg1}>

</select>

(2)使用自定义参数名,前提: 在映射器接口方法的参数前加注解@Param("")

public User getUser(@Param("username") String username,@Param("password") String password);

或 public User getUser(User user);

<select id="getUser" resultType="com.User">select * from t user where username=#{username} and password=#{password} </select>

返回类型

1.实体类: 将查询结果封装为Java对象,通常是自定义的实体类

2.Map: 将查询结果封装为Map对象

3.List: 将查询结果封装为List对象。

4.Array: 将查询结果封装为数组对象

5.ResultMap: 将查询结果封装为ResultMap对象

6.自定义类型外理器:根据自定义类型的类或数据类型外理查询结果,将查询结果封装为自定义类型的对象

7.Void: 不返回任何结果。

8.Cursor: 返回结果集的游标,可以逐行读取结果集

9.InputStream: 返回结果集的二进制流,适合处理较大的结果集

查询

sql处理

in数组处理

<if test="bankids !=null and bankids.size()>0" >

and (t.BANKID IN

<foreach item="item" collection="bankids" open="(" close=")" index="index">

<if test="index != 0">

<choose>

<when test="index % 1000 == 999">) OR t.BANKID IN(</when>

<otherwise>,</otherwise>

</choose>

</if>

#{item}

</foreach>)

</if>

if语句

<if test="startdate !=null">

AND t.TRANDATE &gt;= to_date(#{startdate},'yyyy-MM-dd HH24:mi:ss')

</if>

choose when

<choose>

<when test="index % 1000 == 999">) OR t.FILLINFOSTATE IN(</when>

<otherwise>,</otherwise>

</choose>

association 一对一关联查询

<association property="customer" javaType="Customer"

select="com.xu.mapper.CustomerMapper.selectById"

column="{id:customer_id}">

</association>

日期格式

and t.trandate <![CDATA[>=]]> to_date(#{startDate},'yyyy-MM-dd')

相关推荐
小李不想输啦1 小时前
什么是微服务、微服务如何实现Eureka,网关是什么,nacos是什么
java·spring boot·微服务·eureka·架构
张铁铁是个小胖子1 小时前
微服务学习
java·学习·微服务
ggs_and_ddu1 小时前
Android--java实现手机亮度控制
android·java·智能手机
敲代码娶不了六花3 小时前
jsp | servlet | spring forEach读取不了对象List
java·spring·servlet·tomcat·list·jsp
Yhame.3 小时前
深入理解 Java 中的 ArrayList 和 List:泛型与动态数组
java·开发语言
是小崔啊4 小时前
开源轮子 - EasyExcel02(深入实践)
java·开源·excel
myNameGL5 小时前
linux安装idea
java·ide·intellij-idea
青春男大5 小时前
java栈--数据结构
java·开发语言·数据结构·学习·eclipse
HaiFan.5 小时前
SpringBoot 事务
java·数据库·spring boot·sql·mysql
我要学编程(ಥ_ಥ)5 小时前
一文详解“二叉树中的深搜“在算法中的应用
java·数据结构·算法·leetcode·深度优先