Mybatis+mysql 插入数据的时候,想要返回插入的主键

keyProperty="id" useGeneratedKeys="true">
    insert into `role`(`rolename`, `note`) values(#{roleName},#{note});

 

在insert标签中加入 keyProperty(主键名称,需要getter和setter)和useGeneratedKeys表示主键自增长

转载于:https://my.oschina.net/u/3500562/blog/1924710

你可能感兴趣的:(Mybatis+mysql 插入数据的时候,想要返回插入的主键)