前言:项目之前使用的spring data jpa,获取id直接从实体类获取即可(动态更新),切换到mybatis后,也无需查询,只要添加useGeneratedKeys="true" keyProperty即可。
useGeneratedKeys="true" keyProperty="id"