SpringBoot中Lombok无法使用问题

遇到lombok的get,set方法和有参无参构造方法无法使用问题时,看是否没有引用依赖,是否加入@Data注解和setting中是否加载lombok.

1.pom.xml中引入依赖:


            org.projectlombok
            lombok
            true
        

2.加入相关注解

@Data//使用lombok
@AllArgsConstructor//有参并且是全参构造
@NoArgsConstructor//无参构造
public class User {
    @TableId(type = IdType.AUTO)//主键使用雪花算法,数据库中也必须是递增的
    private Integer id;
    @TableField(value = "u_name")//如果数据库的字段名与属性名不一致时使用
    private String name;
    private Integer age;
    private String sex;
    @TableLogic//当删除时只更改数据状态不删除数据
    private int deleted;
    @TableField(fill = FieldFill.INSERT)//自动填充
    private Date createtime;
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Date updatetime;

    public User(Integer id, String name, Integer age, String sex, int deleted) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.sex = sex;
        this.deleted = deleted;
    }
}

3.在setting中的plugins中下载lombok

SpringBoot中Lombok无法使用问题_第1张图片

SpringBoot中Lombok无法使用问题_第2张图片

你可能感兴趣的:(java,spring,boot)