mybatis怎么设置主键自增
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis怎么设置主键自增相关的知识,希望对你有一定的参考价值。
设置主键自增,应该是设置具体的数据库,与mybatis没有什么关系吧。以mysql为例,假设主键为id
1.可以在创建表的时候设置主键
create table tb (
id bigint(20) primary key auto_increment
);
2.也可以在修改表结构的时候设置主键
alter table tb
modify id bigint(20) primary key auto_increment;
更多请参考http://blog.lifw.org/post/35110918
另外在自增的主键在mybatis中可以这么获取
<insert id="..." useGeneratedKeys="true" keyProperty="id">
...
</insert> 参考技术A 说真的这个问题我也找了好久,上面就是在讲一些 百度 中到处可循的事情。
叙述:数据库设置了自增长,用mybatis导入时,不能传入null,用mycat时,不能不传id,所以如何实现获取数据库下次的要增长的id值,赋值给语句,然后插入到数据库中。
我叙述的可能还是有人看不懂,没事,我也不会
mysql的myBatis,主键自增设置
方法一:
insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id"> insert into person(name,pswd) values(#{name},#{pswd}) </insert>
方法二:
<insert id="insert" parameterType="Person"> <selectKey keyProperty="id" resultType="long"> select LAST_INSERT_ID() </selectKey> insert into person(name,pswd) values(#{name},#{pswd}) </insert>
以上是关于mybatis怎么设置主键自增的主要内容,如果未能解决你的问题,请参考以下文章