黑马-苍穹外卖-Day3-公共字段填充

公共字段填充

1 自定义注解AutoFill,标识需要进行公共字段自动填充的方法

// OperationType.java

/**
 * 自定义注解,用于表示某个方法需要进行公共字段填充处理
 */
@Target(ElementType.METHOD)  // 指定当前注解会加在什么位置;ElementType.METHOD指定当前注解只能加在方法上
@Retention(RetentionPolicy.RUNTIME)  // 注解生命周期,注解不仅被保存到class文件中,jvm加载class文件之后,仍然存在
public @interface AutoFill {

    // 指定当前数据库的操作类型:UPDATE INSERT
    OperationType value();

2 自定义切面类AutoFillAspect,统一拦截加入了AutoFill注解的方法,通过反射为公共字段赋值

  • 简单测试,后面完善
/**
 * 自定义切面类,实现公共字段自动填充逻辑
 */
@Aspect  // 切面
@Component
@Slf4j  // 记录一些日志
public class AutoFillAspect {
    // 定义切入点和通知
    /**
     * 切入点,对哪些类的哪些方法进行拦截
     */
    @Pointcut("execution(* com.sky.mapper.*.*(..)) && @annotation(com.sky.annotation.AutoFill)")  // 拦截Mapper类下所有的包所有的方法 且 方法上加了AutoFill注解的
    public void autoFillPointCut() {}

    /**
     * 前置通知,在通知中进行公共字段的赋值
     */
    @Before("autoFillPointCut()")  // 前置通知
    public void autoFill(JoinPoint joinPoint) {  // 参数:连接点,当前哪个方法被拦截,被拦截的方法的参数值和类型
        log.info("开始进行公共字段填充...");

    }
}

在这里插入图片描述

3 完善

/**
     * 前置通知,在通知中进行公共字段的赋值
     */
    @Before("autoFillPointCut()")  // 前置通知
    public void autoFill(JoinPoint joinPoint) {  // 参数:连接点,当前哪个方法被拦截,被拦截的方法的参数值和类型
        log.info("开始进行公共字段填充...");

        // 获取当前拦截到的方法的操作类型是INSERT还是UPDATE
        MethodSignature signature = (MethodSignature) joinPoint.getSignature();  // 获得方法签名对象
        AutoFill annotation = signature.getMethod().getAnnotation(AutoFill.class);// 获得方法上的注解对象
        OperationType operationType = annotation.value();  // 获得操作类型

        // 获取到当前被拦截的方法的参数 -- 实体对象,修改对象里的属性值
        // void update(Employee employee);  要拦截获得employee实体
        Object[] args = joinPoint.getArgs();  // 获取所有参数
        if(args == null || args.length == 0) {  // 当前方法没有参数
            // 后面就没必要执行了,直接返回
            return ;
        }

        Object entity = args[0];  // 约定,实体对象放到第一个参数

        // 准备赋值的数据,时间、当前用户的ID
        LocalDateTime now = LocalDateTime.now();
        Long currentId = BaseContext.getCurrentId();

        // 根据不同的操作类型,为对应的属性通过反射来赋值
        if(operationType == OperationType.INSERT) {
            // 插入,四个公共字段
            try {
                // Method setCreateTime = entity.getClass().getDeclaredMethod("setCreateTime", LocalDateTime.class);  函数名称写成常量,防止写错,便于修改
                Method setCreateTime = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_CREATE_TIME, LocalDateTime.class);
                Method setCreateUser = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_CREATE_USER, Long.class);
                Method setUpdateTime = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_UPDATE_TIME, LocalDateTime.class);
                Method setUpdateUser = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_UPDATE_USER, Long.class);

                // 通过反射,为对象属性赋值
                setCreateTime.invoke(entity, now);
                setCreateUser.invoke(entity, currentId);
                setUpdateTime.invoke(entity, now);
                setUpdateUser.invoke(entity, currentId);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }else if(operationType == OperationType.UPDATE) {
            // 更新,两个公共字段
            try {
                Method setUpdateTime = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_UPDATE_TIME, LocalDateTime.class);
                Method setUpdateUser = entity.getClass().getDeclaredMethod(AutoFillConstant.SET_UPDATE_USER, Long.class);

                // 通过反射,为对象属性赋值
                setUpdateTime.invoke(entity, now);
                setUpdateUser.invoke(entity, currentId);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

4 修改之前的

  • Mapper里的insert和update加上注解,serviceimpl中对应的手动填充的代码可以注释掉了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值