MyBatis insert實體如何返回主鍵
insert實體如何返回主鍵
一、insert 屬性詳解
parameterType
:入參的全限定類名或類型別名keyColumn
:設置數據表自動生成的主鍵名。對特定數據庫(如PostgreSQL),若自動生成的主鍵不是第一個字段則必須設置keyProperty
:默認值unset,用於設置getGeneratedKeys方法或selectKey子元素返回值將賦值到領域模型的哪個屬性中useGeneratedKeys
:取值范圍true|false(默認值),設置是否使用JDBC的getGenereatedKeys方法獲取主鍵並賦值到keyProperty設置的領域模型屬性中。MySQL和SQLServer執行auto-generated key field,因此當數據庫設置好自增長主鍵後,可通過JDBC的getGeneratedKeys方法獲取。但像Oralce等不支持auto-generated key field的數據庫就不能用這種方法獲取主鍵瞭statementType
:取值范圍STATEMENT,PREPARED(默認值),CALLABLEflushCache
:取值范圍true(默認值)|false,設置執行該操作後是否會清空二級緩存和本地緩存timeout
:默認為unset(依賴jdbc驅動器的設置),設置執行該操作的最大時限,超時將拋異常databaseId
:取值范圍oracle|mysql等,表示數據庫廠傢,元素內部可通過`<if test=”_databaseId = ‘oracle'”>`來為特定數據庫指定不同的sql語句
二、Mapper接口
三、執行mapper.xml 返回主鍵
兩種方式均滿足需求。
註意:mapper接口返回值依然是成功插入的記錄數,但不同的是主鍵值已經賦值到領域模型實體的id中瞭。
四、測試結果
六、批量插入
<insert id="add" parameterType="com.test.model.Course"> <foreach collection="list" item="item" index="index" separator=";"> insert into tb_course (course_name, teacher_name, course_week, course_time, place, gmt_create, gmt_modify) values (#{courseName,jdbcType=VARCHAR}, #{teacherName,jdbcType=VARCHAR}, #{courseWeek,jdbcType=VARCHAR}, #{courseTime,jdbcType=VARCHAR}, #{place,jdbcType=VARCHAR}, #{gmtCreate,jdbcType=TIMESTAMP}, #{gmtModify,jdbcType=TIMESTAMP}) </foreach></insert>
七、小結一下
兩種方式:
1、添加屬性 useGeneratedKeys=”true” keyProperty=”id”
2、添加代碼
<selectKey resultType="java.lang.Short" order="AFTER" keyProperty="id"> SELECT LAST_INSERT_ID() AS id </selectKey>
推薦使用第一種!
Mybatis添加記錄,返回主鍵id
Role.java實體類
public class Role implements Serializable { private String roleId; private String name; private Integer status; public String getRoleId() { return roleId; } public void setRoleId(String roleId) { this.roleId = roleId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } }
SysRoleDao.java
public interface SysRoleDao { public int addRole(SysRole role); }
mapper-role.xml
<insert id="addRole" parameterType="SysRole" useGeneratedKeys="true" keyProperty="roleId" keyColumn="role_id"> insert into t_sys_role( name,status ) values( #{name,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, ) </insert>
註:
1、添加記錄能夠返回主鍵的關鍵點在於需要在<insert>標簽中添加以下三個屬性<insert useGeneratedKeys=”true” keyProperty=”id” keyColumn=”id”></insert>。
useGeneratedKeys
:必須設置為true,否則無法獲取到主鍵id。keyProperty
:設置為POJO對象的主鍵id屬性名稱。keyColumn
:設置為數據庫記錄的主鍵id字段名稱
2、新添加主鍵id並不是在執行添加操作時直接返回的,而是在執行添加操作之後將新添加記錄的主鍵id字段設置為POJO對象的主鍵id屬性
TestDao.java
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations= {"classpath:config/spring-core.xml","classpath:config/spring-web.xml"}) public class TestDao{ @Autowired SysRoleDao roleDao; @Test public void test() { SysRole role=new SysRole(); role.setName("admin10"); role.setStatus(1); System.out.println("返回結果:"+roleDao.addRole(role)); System.out.println("主鍵id:"+role.getRoleId()); } }
打印結果
返回結果:1
主鍵id:12
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- 詳解mybatis插入數據後返回自增主鍵ID的問題
- Mybatis useGeneratedKeys參數用法及問題小結
- MyBatis註解開發-@Insert和@InsertProvider的使用
- mybatis的selectKey作用詳解
- mybatis新增save結束後自動返回主鍵id詳解