MyBatis獲取數(shù)據(jù)庫(kù)自生成的主鍵Id詳解及實(shí)例代碼
在使用MySQL數(shù)據(jù)庫(kù)時(shí)我們一般使用數(shù)據(jù)庫(kù)的自增主鍵自動(dòng)產(chǎn)生主鍵。如果在插入主表時(shí),我們需要同時(shí)插入從表的數(shù)據(jù),這時(shí)我們通常需要知道主表插入時(shí)自動(dòng)產(chǎn)生的主鍵Id值。
下面介紹使用MyBatis進(jìn)行插入時(shí),如何同時(shí)獲取數(shù)據(jù)庫(kù)自生成的主鍵:
1、XML配置文件
insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id">
insert into person(name,pswd) values(#{name},#{pswd})
/insert>
2、Mapper中的方法
int insert(Person person);
注意在調(diào)用這個(gè)方法時(shí),返回的int值并不是主鍵,而是插入的記錄數(shù)。主鍵id會(huì)被賦值到輸入的person對(duì)象里,自動(dòng)賦值給person對(duì)象的id屬性。比如:
Person person = new Person("name","psw");
//num是插入的記錄數(shù)
int num = PersonMapper.insert(person);
//person對(duì)象的id屬性會(huì)變成自生成的id
int id = person.getId();
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:- spring boot整合mybatis利用Mysql實(shí)現(xiàn)主鍵UUID的方法
- Mybatis 插入一條或批量插入 返回帶有自增長(zhǎng)主鍵記錄的實(shí)例
- MyBatis在insert插入操作時(shí)返回主鍵ID的配置(推薦)
- MyBatis+MySQL 返回插入的主鍵ID的方法
- Mybatis返回插入主鍵id的方法
- 詳解Java MyBatis 插入數(shù)據(jù)庫(kù)返回主鍵
- MyBatis插入時(shí)獲取自增主鍵方法
- MyBatis中insert操作返回主鍵的實(shí)現(xiàn)方法
- 利用Java的MyBatis框架獲取MySQL中插入記錄時(shí)的自增主鍵
- MyBatis插入數(shù)據(jù)返回主鍵的介紹