Mybatis-Plus|Mybatis-Plus 新增获取自增列id方式
目录
- 新增获取自增列id
- 1、实体类定义
- 2、解决办法
- 3、调用方法获取id说明
- 解决id自增方法
新增获取自增列id
1、实体类定义
注意:@TableId(value = https://www.it610.com/article/“id”, type = IdType.AUTO)注解中的 type = IdType.AUTO 属性标注主键为自增策略。
import lombok.Data; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableField; @Data@TableName("users")public class User {@TableId(value = "https://www.it610.com/article/id", type = IdType.AUTO)private Integer id; @TableField("`name`")private String name; }
【Mybatis-Plus|Mybatis-Plus 新增获取自增列id方式】
2、解决办法
方法一:
使用框架自带的insert方法。
int insert(T entity);
方法二:
@Insert("insert into users(`name`) values(#{user.name})")@Options(useGeneratedKeys = true, keyProperty = "id", keyColumn = "id")Integer add(@Param("user") User user);
方法三:
@InsertProvider(type = UserMapperProvider.class, method = "add")@Options(useGeneratedKeys = true, keyProperty = "id", keyColumn = "id")Integer add(@Param("user") User user);
UserMapperProvider类
public class UserMapperProvider {public String add(User user) {return "insert into users(id, `name`) values(#{user.id},#{user.name})"; }}
3、调用方法获取id说明
方法调用前:
文章图片
方法调用后:
文章图片
解决id自增方法 在pojo文件中id加入
@TableId(value = https://www.it610.com/article/“id”,type = IdType.AUTO)
文章图片
application.yml中加入:
global-config:db-config:id-type: auto
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 面试|四面美团开发岗,成功斩获offer,这份面经总结终结篇看完就是血赚!
- 微软商店上架Windows&Office破解工具,并获5星好评()
- 面向体验,助推超视频时代新增长
- GitHub CEO发文(严格限制俄罗斯获取侵略性军事能力所需要的技术)
- try..catch|try..catch 不能捕获的错误有哪些(注意事项又有哪些?)
- git|qinglong青龙面板使用
- 开源者访谈录第|开源者访谈录第 1 期(如何在 3 个月内斩获 14000 个 GitHub Star!)
- 如何获取 Docker 容器的 IP 地址
- 常见正则应用
- mybatis|Mybatis-plus通用CRUD