方式:(通过mybatis plus生成的不需要编写mapper文件) 1)select方式 <insert id="insert"parameterType="com.xx.entity.Dept"> <selectKey resultType="int"keyProperty="deptno"keyColumn="deptno"order="AFTER">selectlast_insert_id()</selectKey>insert into dept(deptname,loc) values(#{deptname},#{loc})<...
<insert id="insertUser" parameterType="com.crush.mybatisplus.entity.User">INSERT INTO tb_user (username,password) VALUES(#{username},#{password});<selectKey resultType="java.lang.Long" order="AFTER" keyProperty="id">SELECT LAST_INSERT_ID()</selectKey></insert> 解释: 这里设置的Mysql的主键是...
@OverridepublicLonginsert(User user){returnuserMapper.insertUser(user)>0?user.getId():null;} 1.2、使用UUID自增主键 代码语言:javascript 复制 <insert id="insertUser2"parameterType="com.crush.mybatisplus.entity.User"><selectKey keyProperty="id"order="BEFORE"resultType="String">selectuuid()</selectK...
mybatis-plus:mapper-locations:classpath*:mapperxml/*Mapper.xml AI代码助手复制代码 直接先看mapper.xml文件,这个insert语句实际上就是插入MouldMessage这个我定义的实体类。 <mapper namespace="com.hwz.MessageMouldMapper"><insertid="testInsert" useGeneratedKeys="true" keyProperty="id">INSERTINTOt_XXXX ...
@TableId 主键注解 作用:声明实体类中的主键对应的字段。 IdType 主键类型 开始新增数据 测试表准备好后,我们准备开始演示新增数据。实际上,Mybatis Plus 对 Mapper 层和 Service 层都将常见的增删改查操作都封装好了,只需简单的继承,即可轻松搞定对数据的增删改查,本文重点讲解新增数据这块。
userMapper.insert(user);// 获取插入数据的主键 IDLong id = user.getId(); System.out.println("id:"+ id); 怎么样,是不是非常简单呢! Service 层 Mybatis Plus 同样也封装了通用的 Service 层 CRUD 操作,并且提供了更丰富的方法。接下来,我们上手看 Service 层的代码结构,如下图: ...
默认情况下按照官方文档的快速开始可以快速集成MybatisPlus。 虽然MB+提供了一些注解,正常情况下除了需要创建一个Mapper继承BaseMapper,其他的不需要配置。 如果我们使用了数据库自增主键并且希望insert方法都返回主键ID,需要配置一下实体类的主键 publicclassWeb_user{@TableId(type=IdType.AUTO)privatelong user_id;priv...
ibatis插入数据后返回id ORACLE数据库 首先看配置 <insert id="insertOperation"> insert into operation (id,name,desc) values (operation_seq.nextval,#name#,#desc#) <selectKey resultClass="long" keyProperty="Id" > select operation_seq.currval as id from dual...
<insert id="insertUser" parameterType="User" useGeneratedKeys="true"> insert into user (name, age) values (#{name}, #{age})</insert> 设置 keyProperty 属性 keyProperty 属性的作用是指定主键 ID 赋值的目标属性。在配置文件中,我们可以在 insert 元素中设置 keyProperty 属性:<insert id="insertUs...