Mybatis insert 自增主键

1、Mapper映射文件中INSERT语句的写法

在INSERT标签的属性keyProperty、useGenerateKey、parameterType属性赋值

属性
keyProperty 将获取的自增主键的值赋予JavaBean属性
keyColumn 指定数据库主键的列名
useGenerateKey True
parameterType 参数类型
  1. <insert id="addUser"
  2. keyProperty="userId"
  3. keyColumn="user_id"
  4. useGeneratedKeys="true"
  5. parameterType="com.fcant.bean.UserInfo">
  6. INSERT INTO user_info(user_id, user_name, age, create_time)
  7. VALUES (#{userId}, #{userName}, #{age}, #{createTime})
  8. </insert>

2、Mapper接口中写法

  1. /**
  2. * 添加用户
  3. *
  4. * @param userInfo
  5. * @return int
  6. * @author Fcant
  7. * @date 18:40 2019/12/3
  8. */
  9. int addUser(UserInfo userInfo);

3、Service层接口的写法

  1. /**
  2. * 添加用户
  3. *
  4. * @param userInfo
  5. * @return int
  6. * @author Fcant
  7. * @date 18:40 2019/12/3
  8. */
  9. int addUser(UserInfo userInfo);

4、在Service实现类调用Mapper接口后,再获取对象的自增主键的属性值即可得到

  1. /**
  2. * 添加用户
  3. *
  4. * @param userInfo
  5. * @return int
  6. * @author Fcant
  7. * @date 18:40 2019/12/3
  8. */
  9. @Override
  10. public int addUser(UserInfo userInfo) {
  11. userMapper.addUser(userInfo);
  12. System.out.println(userInfo.getUserId());
  13. return userInfo.getUserId();
  14. }