Sequence键(Mybatis-Plus)

@TableId

在实体类的主键字段上添加@TableId注解,指定生成ID类型即可完成主键的设置

例如:

1
2
3
4
5
6
7
8
9
10
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
/*type的不同取值在IdType枚举类中进行了定义,见后续内容*/
@TableId(type = IdType.AUTO)
private Integer id;
private String name;
private String password;
}

测试代码:

1
2
3
4
5
6
7
@Test
void insert() {
User user = new User();
user.setName("aa");
user.setPassword("123456");
userMapper.insert(user);
}

插入数据时,不必再设置主键值,系统将自动添加

IdType枚举类源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@Getter
public enum IdType {
/**
* 数据库ID自增
* <p>该类型请确保数据库设置了 ID自增否则无效</p>
*/
AUTO(0),
/**
* 该类型为未设置主键类型,即表未设置主键
*/
NONE(1),
/**
* 用户输入ID
* <p>该类型可以通过自己注册自动填充插件进行填充</p>
*/
INPUT(2),

/* 以下3种类型、只有当插入对象ID 为空,才自动填充。*/
/**
* 分配ID (主键类型为number或string),
* 默认实现类 {@link com.baomidou.mybatisplus.core.incrementer.DefaultIdentifierGenerator}(雪花算法)
*
* @since 3.3.0
*/
ASSIGN_ID(3),
/**
* 分配UUID (主键类型为 string)
* 默认实现类 {@link com.baomidou.mybatisplus.core.incrementer.DefaultIdentifierGenerator}(UUID.replace("-",""))
*/
ASSIGN_UUID(4);

private final int key;

IdType(int key) {
this.key = key;
}
}