java 获取insert的自增长id
Posted lyp0606
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 获取insert的自增长id相关的知识,希望对你有一定的参考价值。
可以在 .xml中 <insert></insert>里面加入 useGeneratedKeys="true" keyProperty="id" ,就想这样<insert useGeneratedKeys="true" keyProperty="id"></insert>。
就可以在后台直接用entity.getId获取insert 自增长的id。
以上是关于java 获取insert的自增长id的主要内容,如果未能解决你的问题,请参考以下文章
ibatis annotations 注解方式返回刚插入的自增长主键ID的值