使用Mybatis 关于数据库采用UUID策略自增,在xml中设置insert语句
2022/2/14 2:44:46
本文主要是介绍使用Mybatis 关于数据库采用UUID策略自增,在xml中设置insert语句,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
主键自增方式:采用主键自增 字段为int类型, 第二种为UUID策略自增
此文主要UUID形式自增
由于采用UUID形式,当insert时 主键的值无法获取,所以采用 <selectKey>标签, 此标签可以获取到UUID的value,
- <!--selectKey 会将
select replace(uuid(),'-','') AS id 以下为 语句A
的结果传入到insert的主键里面, - keyProperty 对应的model中的主键的属性名,这里是 user 中的id,因为它跟数据库的主键对应
- order 有俩个参数1.AFTER 2.BEFORE
- 1.AFTER 表示 语句A 在insert执行之后执行,多用与自增主键,
- 2.BEFORE 表示 语句A在insert执行之前执行
- resultType 主键类型
<insert id="createMarketing" parameterType="BizMarketing" useGeneratedKeys="true" keyProperty="id"> <selectKey keyProperty="id" resultType="java.lang.String" order="BEFORE"> select replace(uuid(),'-','') AS id </selectKey> insert into tbl_marketing_activities <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null and id != ''">id,</if> <if test="owner != null and owner !=''">owner,</if> <if test="name != null and name !=''">name,</if> <if test="startDate != null and startDate !=''">startDate,</if> </trim> <trim prefix="values(" suffix=")" suffixOverrides=","> <if test="id != null and id != ''">#{id},</if> <if test="owner != null and owner !=''">#{owner},</if> <if test="name != null and name !=''">#{name},</if> <if test="startDate != null and startDate !=''">#{startDate},</if> </trim> </insert>
这篇关于使用Mybatis 关于数据库采用UUID策略自增,在xml中设置insert语句的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14XMLHTTPRequest教程:初学者必备指南
- 2024-10-10XMLHTTPRequest项目实战:从入门到上手
- 2024-02-26lxml not found please install it
- 2022-09-16使用Druid数据源-开启监控-xml的方式-配置类的方式
- 2022-09-08IDEA中pom.xml配置文件依赖文件版本号报红的最有效解决办法
- 2022-09-05如何更换项目中web.xml的版本
- 2022-09-02使用dom4j xml解析文件数据
- 2022-08-24可扩展标记语言——XML
- 2022-08-23mybatis 配置文件mybatis.xml的加载过程
- 2022-08-162022最新有效 哔哩哔哩Bilibili手机端.m4s文件缓存转.mp4教程 支持每个视频单独一个文件夹 支持转换xml弹幕