mybatis-plus小知识点

开启sql日志配置

# 开启mp的日志(输出到控制台)
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

配置表名跟主键的规则


global-config:
  db-config:
    table-prefix: tb_ #全局配置表名 (如果单独类配置了 那么全局就不生效)
    id-type: assign_id #全局配置主键自增的规则
    
    
    
    @TableName("tb_user") //可以给这个类指定表名字 这是局部配置 也可以全局配置
public class User {
    ------------------------------
    
    @TableId(type = IdType.ASSIGN_ID) //雪花算法生成全局唯一的长整型数字

table注解用法以及作用

@TableName("tb_user") //可以给这个类指定表名字 这是局部配置 也可以全局配置
public class User {
//    @TableId(type = IdType.AUTO) //根据数据库策略自增  这是局部配置 也可以全局配置
    @TableId(type = IdType.ASSIGN_ID) //雪花算法生成全局唯一的长整型数字
    private Long id;

//    @TableField(select = false) //查询的时候不查询这个字段
    private String name;

//    @TableField(value = "mipassword") //指定数据库字段名
    private String password;

//    @TableField(exist = false) //告诉数据库不存在这个字段
    private Integer age;

    private String tel;

    @TableLogic //添加逻辑删除
    private Integer deleted;
}

page分页配置类

@Configuration
public class MybatisPageConfig {

    @Bean
    public MybatisPlusInterceptor interceptor() {
        //mybatisplus的拦截器
        MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
        
//分页拦截器
mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor());
        return mybatisPlusInterceptor;
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值