SpringBoot中實(shí)現(xiàn)數(shù)據(jù)脫敏處理的方法詳解
項(xiàng)目開發(fā)中,在處理敏感信息時(shí),數(shù)據(jù)脫敏是一項(xiàng)重要的安全措施。數(shù)據(jù)脫敏可以防止敏感信息在非授權(quán)情況下被泄露,同時(shí)在數(shù)據(jù)共享和分析時(shí)保護(hù)用戶隱私。
一、數(shù)據(jù)脫敏的必要性
保護(hù)隱私:防止敏感信息(如身份證號(hào)、手機(jī)號(hào)等)被泄露。
合規(guī)要求:遵循數(shù)據(jù)保護(hù)法規(guī)(如 GDPR、CCPA 等)。
增強(qiáng)安全性:降低數(shù)據(jù)被濫用的風(fēng)險(xiǎn)。
二、常用的數(shù)據(jù)脫敏策略
替換脫敏:用特定字符替換敏感信息的一部分,如用 * 替換手機(jī)號(hào)中間部分。
哈希脫敏:使用哈希算法對(duì)敏感信息進(jìn)行處理,無法恢復(fù)原值。
模糊化:對(duì)數(shù)據(jù)進(jìn)行模糊處理,使其不易識(shí)別,但保留一定的可用性。
加密脫敏:對(duì)敏感信息進(jìn)行加密存儲(chǔ),只在授權(quán)情況下解密。
三、實(shí)現(xiàn)步驟
3.1 創(chuàng)建脫敏注解
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Sensitive {
String type(); // 脫敏類型
String pattern() default ""; // 可選的模式參數(shù)
}
3.2 策略接口設(shè)計(jì)
首先,定義一個(gè)脫敏策略接口,所有的脫敏策略都將實(shí)現(xiàn)這個(gè)接口:
public interface MaskingStrategy {
String mask(String value, String pattern);
}
3.3 具體脫敏策略實(shí)現(xiàn)
接下來,為每種脫敏類型創(chuàng)建具體的實(shí)現(xiàn)類:
public class PhoneMaskingStrategy implements MaskingStrategy {
@Override
public String mask(String value, String pattern) {
return value.replaceAll("(\d{3})\d{4}(\d{4})", "$1****$2");
}
}
public class IdCardMaskingStrategy implements MaskingStrategy {
@Override
public String mask(String value, String pattern) {
return value.replaceAll("(\d{6})\d{8}(\d{4})", "$1****$2");
}
}
public class CustomMaskingStrategy implements MaskingStrategy {
@Override
public String mask(String value, String pattern) {
return value.replaceAll(pattern, "****");
}
}
3.4 策略工廠
創(chuàng)建一個(gè)策略工廠,根據(jù)脫敏類型返回相應(yīng)的策略實(shí)例:
import java.util.HashMap;
import java.util.Map;
public class MaskingStrategyFactory {
private static final Map<String, MaskingStrategy> strategies = new HashMap<>();
static {
strategies.put("phone", new PhoneMaskingStrategy());
strategies.put("idCard", new IdCardMaskingStrategy());
strategies.put("custom", new CustomMaskingStrategy());
}
public static MaskingStrategy getStrategy(String type) {
return strategies.getOrDefault(type, (value, pattern) -> value.replaceAll(".", "*")); // 默認(rèn)脫敏
}
}
3.5 通用脫敏處理器
import org.springframework.stereotype.Component;
import java.lang.reflect.Field;
@Component
public class GeneralDataMaskingProcessor {
public void maskSensitiveData(Object obj) throws IllegalAccessException {
Class<?> clazz = obj.getClass();
for (Field field : clazz.getDeclaredFields()) {
if (field.isAnnotationPresent(Sensitive.class)) {
field.setAccessible(true);
Object value = field.get(obj);
if (value != null) {
String maskedValue = maskValue(value.toString(), field.getAnnotation(Sensitive.class));
field.set(obj, maskedValue);
}
}
}
}
private String maskValue(String value, Sensitive sensitive) {
String type = sensitive.type();
String pattern = sensitive.pattern();
MaskingStrategy strategy = MaskingStrategyFactory.getStrategy(type);
return strategy.mask(value, pattern);
}
}
3.6 使用示例
1. 創(chuàng)建用戶實(shí)體類
public class User {
private Long id;
@Sensitive(type = "phone")
private String phoneNumber;
@Sensitive(type = "idCard")
private String idCard;
@Sensitive(type = "custom", pattern = "\d{3}-\d{4}") // 自定義模式
private String customField;
private String name;
// Getters and Setters
}
2. 在服務(wù)層調(diào)用脫敏處理器
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService {
@Autowired
private GeneralDataMaskingProcessor dataMaskingProcessor;
public User getUser(Long id) {
User user = findUserById(id); // 假設(shè)這是從數(shù)據(jù)庫獲取用戶信息
try {
dataMaskingProcessor.maskSensitiveData(user);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
return user;
}
private User findUserById(Long id) {
// 模擬從數(shù)據(jù)庫獲取用戶
return new User(id, "13812345678", "123456789012345678", "123-4567", "John Doe");
}
}
3. 測(cè)試脫敏功能
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest
public class UserServiceTest {
@Autowired
private UserService userService;
@Test
public void testGetUser() {
User user = userService.getUser(1L);
assertThat(user.getPhoneNumber()).isEqualTo("138****5678");
assertThat(user.getIdCard()).isEqualTo("123456****5678");
assertThat(user.getCustomField()).isEqualTo("123-****"); // 自定義脫敏
}
}
四、總結(jié)
通過以上步驟,在Spring Boot 項(xiàng)目中實(shí)現(xiàn)了數(shù)據(jù)脫敏功能。使用自定義注解和處理器并結(jié)合策略模式,可以靈活地對(duì)敏感信息進(jìn)行脫敏處理。
到此這篇關(guān)于SpringBoot中實(shí)現(xiàn)數(shù)據(jù)脫敏處理的方法詳解的文章就介紹到這了,更多相關(guān)SpringBoot數(shù)據(jù)脫敏內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
java?Object的hashCode方法的計(jì)算邏輯分析
這篇文章主要介紹了java?Object的hashCode方法的計(jì)算邏輯分析,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-12-12
SpringBoot實(shí)現(xiàn)密碼安全存儲(chǔ)的五種方式小結(jié)
項(xiàng)目開發(fā)中,密碼安全存儲(chǔ)是非常關(guān)鍵的一環(huán),作為開發(fā)者,我們需要確保用戶的密碼在存儲(chǔ)時(shí)被安全地加密,避免因數(shù)據(jù)泄露而造成嚴(yán)重后果,所以本文給大家介紹了SpringBoot實(shí)現(xiàn)密碼安全存儲(chǔ)的5種方式,需要的朋友可以參考下2025-03-03
分析Java并發(fā)編程之信號(hào)量Semaphore
Semaphore一般譯作信號(hào)量,它也是一種線程同步工具,主要用于多個(gè)線程對(duì)共享資源進(jìn)行并行操作的一種工具類。它代表了一種許可的概念,是否允許多線程對(duì)同一資源進(jìn)行操作的許可,使用Semaphore可以控制并發(fā)訪問資源的線程個(gè)數(shù)2021-06-06
Springboot實(shí)現(xiàn)動(dòng)態(tài)定時(shí)任務(wù)流程詳解
通過重寫SchedulingConfigurer方法實(shí)現(xiàn)對(duì)定時(shí)任務(wù)的操作,單次執(zhí)行、停止、啟動(dòng)三個(gè)主要的基本功能,動(dòng)態(tài)的從數(shù)據(jù)庫中獲取配置的定時(shí)任務(wù)cron信息,通過反射的方式靈活定位到具體的類與方法中2022-09-09
SpringBoot參數(shù)校驗(yàn)的一些實(shí)戰(zhàn)應(yīng)用
這篇文章主要給大家介紹了關(guān)于SpringBoot參數(shù)校驗(yàn)的一些實(shí)戰(zhàn)應(yīng)用,包括使用內(nèi)置的參數(shù)校驗(yàn)注解、嵌套對(duì)象校驗(yàn)、分組校驗(yàn)以及自定義校驗(yàn)注解,通過這些方法,可以有效地提高系統(tǒng)的穩(wěn)定性和安全性,需要的朋友可以參考下2024-11-11
MyBatis中RowBounds實(shí)現(xiàn)內(nèi)存分頁
RowBounds是MyBatis提供的一種內(nèi)存分頁方式,適用于小數(shù)據(jù)量的分頁場(chǎng)景,本文就來詳細(xì)的介紹一下,具有一定的參考價(jià)值,感興趣的可以了解一下2024-12-12
基于mybatis 動(dòng)態(tài)SQL查詢總結(jié)
這篇文章主要介紹了mybatis 動(dòng)態(tài)SQL查詢總結(jié),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-07-07

