当前位置:   article > 正文

Java数据 定义规则脱敏实现_contextualserializer

contextualserializer

步骤说明

实现 ContextualSerializer 类  重写 createContextual 方法

一、ContextualSerializer 类

官方文档解读:

接口 ContextualSerializer<T>

  • 类型参数:

    T - 用于上下文化的序列化器类型


     
    公共接口ContextualSerializer<T>
    JsonSerializer可以实现的附加接口以获取回调,该回调可用于创建序列化程序的上下文实例以用于处理支持类型的属性。这对于可以通过注释配置的序列化程序很有用,或者应该根据正在序列化的属性类型而具有不同的行为。

createContextual 方法解读

  • createContextual可以获得字段的类型以及注解。
  • createContextual方法只会在第一次序列化字段时调用(因为字段的上下文信息在运行期不会改变),所以不用担心影响性能。

二、具体实现代码

1.定义注解

  1. /**
  2. * 对象脱敏注解
  3. **/
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @Target(ElementType.FIELD)
  6. @JacksonAnnotationsInside
  7. @JsonSerialize(using = SensitiveSerialize.class)
  8. public @interface Sensitive {
  9. /**
  10. * 脱敏数据类型, 非Customer时, 将忽略 refixNoMaskLen 和 suffixNoMaskLen 和 maskStr
  11. */
  12. SensitiveTypeEnum type() default SensitiveTypeEnum.CUSTOMER;
  13. /**
  14. * 前置不需要打码的长度
  15. */
  16. int prefixNoMaskLen() default 0;
  17. /**
  18. * 后置不需要打码的长度
  19. */
  20. int suffixNoMaskLen() default 0;
  21. /**
  22. * 用什么打码
  23. */
  24. String maskStr() default "*";
  25. }

2.枚举类

  1. /**
  2. * 敏感信息枚举类
  3. *
  4. **/
  5. public enum SensitiveTypeEnum {
  6. /**
  7. * 自定义
  8. */
  9. CUSTOMER,
  10. /**
  11. * 用户名, 刘*华, 徐*
  12. */
  13. CHINESE_NAME,
  14. /**
  15. * 身份证号, 110110********1234
  16. */
  17. ID_CARD,
  18. /**
  19. * 座机号, ****1234
  20. */
  21. FIXED_PHONE,
  22. /**
  23. * 手机号, 176****1234
  24. */
  25. MOBILE_PHONE,
  26. /**
  27. * 地址, 北京********
  28. */
  29. ADDRESS,
  30. /**
  31. * 电子邮件, s*****o@xx.com
  32. */
  33. EMAIL,
  34. /**
  35. * 银行卡, 622202************1234
  36. */
  37. BANK_CARD,
  38. /**
  39. * 密码, 永远是 ******, 与长度无关
  40. */
  41. PASSWORD,
  42. /**
  43. * 密钥, 永远是 ******, 与长度无关
  44. */
  45. KEY
  46. }

3.脱敏工具类

  1. /**
  2. * 脱敏工具类
  3. *
  4. **/
  5. public class DesensitizedUtils {
  6. /**
  7. * 对字符串进行脱敏操作
  8. * @param origin 原始字符串
  9. * @param prefixNoMaskLen 左侧需要保留几位明文字段
  10. * @param suffixNoMaskLen 右侧需要保留几位明文字段
  11. * @param maskStr 用于遮罩的字符串, 如'*'
  12. * @return 脱敏后结果
  13. */
  14. public static String desValue(String origin, int prefixNoMaskLen, int suffixNoMaskLen, String maskStr) {
  15. if (origin == null) {
  16. return null;
  17. }
  18. StringBuilder sb = new StringBuilder();
  19. for (int i = 0, n = origin.length(); i < n; i++) {
  20. if (i < prefixNoMaskLen) {
  21. sb.append(origin.charAt(i));
  22. continue;
  23. }
  24. if (i > (n - suffixNoMaskLen - 1)) {
  25. sb.append(origin.charAt(i));
  26. continue;
  27. }
  28. sb.append(maskStr);
  29. }
  30. return sb.toString();
  31. }
  32. /**
  33. * 【中文姓名】只显示最后一个汉字,其他隐藏为星号,比如:**梦
  34. * @param fullName 姓名
  35. * @return 结果
  36. */
  37. public static String chineseName(String fullName) {
  38. if (fullName == null) {
  39. return null;
  40. }
  41. return desValue(fullName, 0, 1, "*");
  42. }
  43. /**
  44. * 【身份证号】显示前六位, 四位,其他隐藏。共计18位或者15位,比如:340304*******1234
  45. * @param id 身份证号码
  46. * @return 结果
  47. */
  48. public static String idCardNum(String id) {
  49. return desValue(id, 6, 4, "*");
  50. }
  51. /**
  52. * 【固定电话】后四位,其他隐藏,比如 ****1234
  53. * @param num 固定电话
  54. * @return 结果
  55. */
  56. public static String fixedPhone(String num) {
  57. return desValue(num, 0, 4, "*");
  58. }
  59. /**
  60. * 【手机号码】前三位,后四位,其他隐藏,比如135****6810
  61. * @param num 手机号码
  62. * @return 结果
  63. */
  64. public static String mobilePhone(String num) {
  65. return desValue(num, 3, 4, "*");
  66. }
  67. /**
  68. * 【地址】只显示到地区,不显示详细地址,比如:北京市海淀区****
  69. * @param address 地址
  70. * @return 结果
  71. */
  72. public static String address(String address) {
  73. return desValue(address, 6, 0, "*");
  74. }
  75. /**
  76. * 【电子邮箱 邮箱前缀仅显示第一个字母,前缀其他隐藏,用星号代替,@及后面的地址显示,比如:d**@126.com
  77. * @param email 电子邮箱
  78. * @return 结果
  79. */
  80. public static String email(String email) {
  81. if (email == null) {
  82. return null;
  83. }
  84. int index = StrUtil.indexOf(email, '@');
  85. if (index <= 1) {
  86. return email;
  87. }
  88. String preEmail = desValue(email.substring(0, index), 1, 0, "*");
  89. return preEmail + email.substring(index);
  90. }
  91. /**
  92. * 【银行卡号】前六位,后四位,其他用星号隐藏每位1个星号,比如:622260**********1234
  93. * @param cardNum 银行卡号
  94. * @return 结果
  95. */
  96. public static String bankCard(String cardNum) {
  97. return desValue(cardNum, 6, 4, "*");
  98. }
  99. /**
  100. * 【密码】密码的全部字符都用*代替,比如:******
  101. * @param password 密码
  102. * @return 结果
  103. */
  104. public static String password(String password) {
  105. if (password == null) {
  106. return null;
  107. }
  108. return "******";
  109. }
  110. /**
  111. * 【密钥】密钥除了最后三位,全部都用*代替,比如:***xdS 脱敏后长度为6,如果明文长度不足三位,则按实际长度显示,剩余位置补*
  112. * @param key 密钥
  113. * @return 结果
  114. */
  115. public static String key(String key) {
  116. if (key == null) {
  117. return null;
  118. }
  119. int viewLength = 6;
  120. StringBuilder tmpKey = new StringBuilder(desValue(key, 0, 3, "*"));
  121. if (tmpKey.length() > viewLength) {
  122. return tmpKey.substring(tmpKey.length() - viewLength);
  123. }
  124. else if (tmpKey.length() < viewLength) {
  125. int buffLength = viewLength - tmpKey.length();
  126. for (int i = 0; i < buffLength; i++) {
  127. tmpKey.insert(0, "*");
  128. }
  129. return tmpKey.toString();
  130. }
  131. else {
  132. return tmpKey.toString();
  133. }
  134. }
  135. }

4.实现接口

  1. @NoArgsConstructor
  2. @AllArgsConstructor
  3. public class SensitiveSerialize extends JsonSerializer<String> implements ContextualSerializer {
  4. private SensitiveTypeEnum type;
  5. private Integer prefixNoMaskLen;
  6. private Integer suffixNoMaskLen;
  7. private String maskStr;
  8. @Override
  9. public void serialize(final String origin, final JsonGenerator jsonGenerator,
  10. final SerializerProvider serializerProvider) throws IOException {
  11. switch (type) {
  12. case CHINESE_NAME:
  13. jsonGenerator.writeString(DesensitizedUtils.chineseName(origin));
  14. break;
  15. case ID_CARD:
  16. jsonGenerator.writeString(DesensitizedUtils.idCardNum(origin));
  17. break;
  18. case FIXED_PHONE:
  19. jsonGenerator.writeString(DesensitizedUtils.fixedPhone(origin));
  20. break;
  21. case MOBILE_PHONE:
  22. jsonGenerator.writeString(DesensitizedUtils.mobilePhone(origin));
  23. break;
  24. case ADDRESS:
  25. jsonGenerator.writeString(DesensitizedUtils.address(origin));
  26. break;
  27. case EMAIL:
  28. jsonGenerator.writeString(DesensitizedUtils.email(origin));
  29. break;
  30. case BANK_CARD:
  31. jsonGenerator.writeString(DesensitizedUtils.bankCard(origin));
  32. break;
  33. case PASSWORD:
  34. jsonGenerator.writeString(DesensitizedUtils.password(origin));
  35. break;
  36. case KEY:
  37. jsonGenerator.writeString(DesensitizedUtils.key(origin));
  38. break;
  39. case CUSTOMER:
  40. jsonGenerator.writeString(DesensitizedUtils.desValue(origin, prefixNoMaskLen, suffixNoMaskLen, maskStr));
  41. break;
  42. default:
  43. throw new IllegalArgumentException("Unknow sensitive type enum " + type);
  44. }
  45. }
  46. @Override
  47. public JsonSerializer<?> createContextual(final SerializerProvider serializerProvider,
  48. final BeanProperty beanProperty) throws JsonMappingException {
  49. if (beanProperty != null) {
  50. if (Objects.equals(beanProperty.getType().getRawClass(), String.class)) {
  51. Sensitive sensitive = beanProperty.getAnnotation(Sensitive.class);
  52. if (sensitive == null) {
  53. sensitive = beanProperty.getContextAnnotation(Sensitive.class);
  54. }
  55. if (sensitive != null) {
  56. return new SensitiveSerialize(sensitive.type(), sensitive.prefixNoMaskLen(),
  57. sensitive.suffixNoMaskLen(), sensitive.maskStr());
  58. }
  59. }
  60. return serializerProvider.findValueSerializer(beanProperty.getType(), beanProperty);
  61. }
  62. return serializerProvider.findNullValueSerializer(null);
  63. }
  64. }

5.使用

  1. public class User implements Serializable {
  2. /**
  3. * 手机号
  4. */
  5. @Sensitive(type = SensitiveTypeEnum.MOBILE_PHONE)
  6. @ApiModelProperty(value = "手机号")
  7. private String phone;
  8. }

总结

以上就是可以根据自定义规则定义脱敏啦!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/573204
推荐阅读
相关标签
  

闽ICP备14008679号