mybatis plus实体类主键策略有3种

mybatis plus 实体类主键策略有3种( 注解 > 全局 > 默认 )

  1. 注解方式

    @TableId(type = IdType.AUTO)在实体类增加注解即可

@TableName("t_article")
public class TArticle extends Model<TArticle> {
    private static final long serialVersionUID = 1L;
    /**
     * id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
    /**
     * 正文
     */
    private String article;
    }
  1. 全局
    生成数字型ID:895503808246718464,ID长度超出JavaScript
  2. 默认,mybatis plus默认使用全局唯一的数字类型
    ID_WORKER(2, “全局唯一ID”),生成的ID格式:ccba0a05fcbe46898304d5213d2b5518
class TableInfoHelper
private static boolean initTableId(GlobalConfiguration globalConfig, TableInfo tableInfo, Field field,
            Class clazz) {
        TableId tableId = field.getAnnotation(TableId.class);
        if (tableId != null) {
            if (tableInfo.getKeyColumn() == null) {
                /*
                 * 主键策略( 注解 > 全局 > 默认 )
                 */
                if (IdType.INPUT != tableId.type()) {
                    tableInfo.setIdType(tableId.type());
                } else {
                    tableInfo.setIdType(globalConfig.getIdType());
                }
                /* 字段 */
                String column = field.getName();
                if (StringUtils.isNotEmpty(tableId.value())) {
                    column = tableId.value();
                    tableInfo.setKeyRelated(true);
                } else {
                    // 开启字段下划线申明
                    if (globalConfig.isDbColumnUnderline()) {
                        column = StringUtils.camelToUnderline(column);
                    }
                    // 全局大写命名
                    if (globalConfig.isCapitalMode()) {
                        column = column.toUpperCase();
                    }
                }
                tableInfo.setKeyColumn(column);
                tableInfo.setKeyProperty(field.getName());
                return true;
            } else {
                throwExceptionId(clazz);
            }
        }
        return false;
    }

你可能感兴趣的:(web)