【Mybatis-plus 基础注解】

文章介绍了在SpringBoot应用中使用Mybatis-plus的基础注解,如@MapperScan用于扫描Mapper文件夹,@TableName标注实体类对应的表,@TableId定义主键及其类型,以及@TableField用于指定字段映射和是否用于查询。这些注解是实现数据库操作的关键元素。
摘要由CSDN通过智能技术生成

Mybatis-plus 基础注解解析

注解解析
在 Spring Boot 启动类中添加 @MapperScan 注解,扫描 Mapper 文件夹

@SpringBootApplication
@MapperScan("com.baomidou.mybatisplus.samples.quickstart.mapper")
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

@TableName(“sys_user”)
描述:表名注解,标识实体类对应的表
使用位置:实体类

@TableName("sys_user")
public class User {
    @TableId
    private Long id;
    private String name;
}

@TableId(type = IdType.AUTO)
描述:主键注解
使用位置:实体类主键字段

@TableName("sys_user")
public class User {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String name;
    private Integer age;
    private String email;
}

在这里插入图片描述
IdType(opens new window)
在这里插入图片描述
@TableField(opens new window)
描述:字段注解(非主键)

@TableField(value = "user_name")
private String userName;
@TableField(value = "password",select = false)
private String password;

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值