
脱敏注解
砥砺-前行
努力路上前行
展开
-
springboot 利用fastjson脱敏数据库数据(自定义注解)
1. 自定义脱敏注解package com.hanhuide.hhde.annotation;import com.hanhuide.hhde.enums.SensitiveTypeEnum;import java.lang.annotation.*;@Target({ElementType.FIELD, ElementType.METHOD})@Retention(Reten...原创 2019-11-28 17:23:36 · 12190 阅读 · 21 评论 -
springboot自定义格式化注解(脱敏)
1. 新建注解import com.hanhuide.hhde.enums.SensitiveTypeEnum;import java.lang.annotation.*;@Target({ElementType.FIELD, ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)@Inherited@Documented...原创 2019-11-28 16:45:18 · 11979 阅读 · 8 评论