MyBatis提供了多種自動生成主鍵的方法,以下是其中幾種常用的方法:
示例:
<insert id="insertUser" parameterType="User" useGeneratedKeys="true" keyProperty="id">
INSERT INTO user (name, age) VALUES (#{name}, #{age})
</insert>
示例:
<insert id="insertUser" parameterType="User">
INSERT INTO user (name, age) VALUES (#{name}, #{age})
<selectKey resultType="Long" keyProperty="id" order="AFTER">
SELECT LAST_INSERT_ID()
</selectKey>
</insert>
示例:
public class User {
private String id;
// ...
public User() {
this.id = UUID.randomUUID().toString();
}
}
需要注意的是,使用以上三種方法時,需要在映射文件中正確設(shè)置keyProperty屬性,指定實體類中對應(yīng)的主鍵字段。