MyBatis-Plus的公共字段自动填充

文章目录

  • 1. 在实体类的相应属性上添加@TableField注解
  • 2. 自定义元数据对象处理器
  • 3. 为了解决对象处理器MyMetaObjecthandler 获取不到外界数据的情况


1. 在实体类的相应属性上添加@TableField注解

package com.itheima.reggie.entity;

import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;

/**
 * 员工实体
 * @author yxmia
 */
@Data
public class Employee implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long id;

    private String username;

    private String name;

    private String password;

    private String phone;

    private String sex;

    /*身份证*/
    private String idNumber;

    private Integer status;

    /*插入时填充*/
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    /*插入与更新时*/
    @TableField(fill=FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;

    @TableField(fill = FieldFill.INSERT)
    private Long createUser;

    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;

}

2. 自定义元数据对象处理器

package com.itheima.reggie.common;

import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.time.LocalDateTime;

/**
 * 自定义元数据对象处理器
 */
@Component//让Boot框架来管理
@Slf4j
public class MyMetaObjecthandler implements MetaObjectHandler {
    /**
     * 插入操作,自动填充
     * @param metaObject
     */
    @Override
    public void insertFill(MetaObject metaObject) {
        log.info("公共字段自动填充[insert]...");
        log.info(metaObject.toString());

        metaObject.setValue("createTime", LocalDateTime.now());
        metaObject.setValue("updateTime",LocalDateTime.now());
        metaObject.setValue("createUser", BaseContext.getCurrentId());
        metaObject.setValue("updateUser",BaseContext.getCurrentId());
    }

    /**
     * 更新操作,自动填充
     * @param metaObject
     */
    @Override
    public void updateFill(MetaObject metaObject) {
        log.info("公共字段自动填充[update]...");
        log.info(metaObject.toString());

        long id = Thread.currentThread().getId();
        log.info("mybatis-plus自动填充修改方法、、、、、、、线程id为:{}",id);

        metaObject.setValue("updateTime",LocalDateTime.now());
        metaObject.setValue("updateUser",BaseContext.getCurrentId());
    }
}

3. 为了解决对象处理器MyMetaObjecthandler 获取不到外界数据的情况

在需要传递参数的地方
Long empId=(Long) request.getSession().getAttribute("employee");
//放到自定义的类中,同一线程公用Threadlocal。
BaseContext.setCurrentId(empId);

你可能感兴趣的:(#,MyBatis,&,MyBatis-Plus,mybatis)