其他分享
首页 > 其他分享> > Mybatis-plus 设置 @TableId(type = IdType.AUTO) 并没有解决自增长问题

Mybatis-plus 设置 @TableId(type = IdType.AUTO) 并没有解决自增长问题

作者:互联网

当我们使用mybatis-plus框架,要想实现id的自增长,需要我们在实体类id的属性上面添加@TableId(type = IdType.AUTO)注解

public class User extends Model<User> {

	@TableId(type = IdType.AUTO)

	private Long id;
void insert(){
		User user=new User();

		user.setUserName("xionger");
		user.setPassword("1523232");
		user.setAge(11);
		//返回值是受影响的条数
		int insert = userMapper.insert(user);
		System.out.println(insert);

		//自增后的id会添加到数据库 
		System.out.println(user.getId());
	}

当添加上该注解后,你会发现添加完数据后,依然是mybatis-plus自动生成的id,并没有实现id的自增长
要解决该问题,其中有一种方法就是,备份表数据,删除表数据,重新创建该表,就可以实现自增长了,很神奇
如果有知道为什么这样做的大神,可以评论下留言 嘿嘿 共同学习

标签:IdType,insert,AUTO,TableId,user,id,User
来源: https://blog.csdn.net/qq_43377329/article/details/120373042