spring Aop实现表名脱敏

针对表的修改和查询,分别采取不同的脱敏方法:

一、配置依赖

pom.xml

<dependency>
  <groupId>org.aspectj</groupId>
  <artifactId>aspectjtools</artifactId>
  <version>1.9.7</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-aspects</artifactId>
  <version>5.3.20</version>
</dependency>

二、编写代码

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface EncryptTable {

    /**
     * 加密的表名
     * @return
     */
    String tableName();

    /**
     * 开关标记
     * @return
     */
    EncryptType type() default  EncryptType.All;

    /**
     * 是否执行批量
     * @return
     */
    boolean batch() default false;
}
@Component
public class EncryptTableSwitchConfig {

     private static String writeTables;

     private static String readTables;

     public static boolean getWriteSW(String tableName){

         if (writeTables.contains(","+tableName+",")){
             return true;
         }
         return false;
     }

    public static boolean getReadSW(String tableName){
        if (readTables.contains(","+tableName+",")) {
            return true;
        }
        return false;
    }

    @Value("${encrypt.table.switch.writeTables:}")
    public void setWriteTables(String writeTables){
        EncryptTableSwitchConfig.writeTables = writeTables;
    }

    @Value("${encrypt.table.switch.readTables:}")
    public void setReadTables(){
        EncryptTableSwitchConfig.readTables = readTables;
    }
}

@Component
@Aspect
public class EncryptTableAspect {

    @Value("${encrypt.table:N}")
    private String sw;

    @Before("@annotation(encryptTable)")
    public void before(JoinPoint joinPoint, EncryptTable encryptTable){
        if (!"Y".equals(sw)) {
            return;
        }

        final String tableName = encryptTable.tableName();
        final EncryptType type = encryptTable.type();
        final boolean batch = encryptTable.batch();

        switch (type) {
            case WRITE:
                if (!EncryptTableSwitchConfig.getWriteSW(tableName)){
                    return;
                }
                break;
            case READ:
                if (!EncryptTableSwitchConfig.getReadSW(tableName)) {
                    return;
                }
                break;
            default:
                if (!EncryptTableSwitchConfig.getReadSW(tableName)
                    && !EncryptTableSwitchConfig.getWriteSW(tableName)) {
                    return;
                }
        }
        if (batch) {
            Switch.batch();
        } else {
            Switch.selected();
        }
    }

    @Value("${encrypt.table.method:,updateUser,insertUser,}")
    private String netsMethod;

    @Pointcut("target(com.xxx.mapper.UserMapper)")
    private void netsUser(){

    }

    /**
     * 使用Aop做脱敏开关
     * @param jp
     */
    @Before("netsUser()")
    public void before(JoinPoint jp){
        MethodSignature signature = (MethodSignature)jp.getSignature();
        final Method method = signature.getMethod();
        if (netsMethod.contains(","+method+",") && EncryptTableSwitchConfig.getWriteSW("tab_user")){
            Switc.selected();
        }

    }

}
/**
 * 操作表的动作
 */
public enum EncryptType {

    WRITE, READ, All;
}

xxxMapper.java

@EncryptTable(tableName="tab_user", type=EncryptType.READ, batch=false)
List<User> getUsersByIds(@param(ids) List<String> ids);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

time Friend

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值