文章目录 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 ;
@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
@Slf4j
public class MyMetaObjecthandler implements MetaObjectHandler { @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 ( ) ) ; } @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" ) ;
BaseContext . setCurrentId ( empId) ;