[Mybatis][Generator,Insert返回自增id]
Posted zy691357966
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Mybatis][Generator,Insert返回自增id]相关的知识,希望对你有一定的参考价值。
[Mybatis][Generator,Insert返回自增id]
标签(空格分隔): 未分类
在
genarator.xml
的<table>
插入<table tableName="jobs"> <generatedKey column="jobid" sqlStatement="mysql" identity="true"/> </table>
在调用
insert
后,jobid
会被直接赋值到对象中,而不是返回值return job.jobid
以上是关于[Mybatis][Generator,Insert返回自增id]的主要内容,如果未能解决你的问题,请参考以下文章
怎样利用 eclipse mybatis generator 自动生成代码