MyBatis擷取資料庫自產生的主鍵Id詳解及執行個體代碼,mybatis詳解

來源:互聯網
上載者:User

MyBatis擷取資料庫自產生的主鍵Id詳解及執行個體代碼,mybatis詳解

MyBatis擷取資料庫自產生的主鍵Id詳解及執行個體代碼

在使用MySQL資料庫時我們一般使用資料庫的自增主鍵自動產生主鍵。如果在插入主表時,我們需要同時插入從表的資料,這時我們通常需要知道主表插入時自動產生的主鍵Id值。

下面介紹使用MyBatis進行插入時,如何同時擷取資料庫自產生的主鍵:

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);

注意在調用這個方法時,返回的int值並不是主鍵,而是插入的記錄數。主鍵id會被賦值到輸入的person對象裡,自動賦值給person對象的id屬性。比如:

Person person = new Person("name","psw");//num是插入的記錄數int num = PersonMapper.insert(person);//person對象的id屬性會變成自產生的idint id = person.getId();

 感謝閱讀,希望能協助到大家,謝謝大家對本站的支援!

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.