springboot 主键返回配置

在Mapper.xml中配置如下属性

useGeneratedKeys="true"

keyProperty="id" 主键对应实体类的id属性名称

keyColumn="id" 主键在表中的column name

User user = new User;
user.setName("jack");
UserDao.insert(user);
//得到主键id
Long id = user.getId();

 

 

 

 

转载于:https://my.oschina.net/u/2984386/blog/1522737

你可能感兴趣的:(springboot 主键返回配置)