溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么通過一個注解實現(xiàn)MyBatis字段加解密

發(fā)布時間:2022-02-14 13:41:10 來源:億速云 閱讀:586 作者:iii 欄目:開發(fā)技術

這篇文章主要講解了“怎么通過一個注解實現(xiàn)MyBatis字段加解密”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么通過一個注解實現(xiàn)MyBatis字段加解密”吧!

簡介

mybatis-crypto 是一個基于 mybatis 插件機制實現(xiàn)的字段加解密組件,通過一個注解即可對敏感數(shù)據(jù)進行加解密處理。 支持自定義 Encryptor、特殊字段單獨指定 Encryptor 和 key ,滿足大部分使用場景。

模塊

mybatis-crypto 包括三個模塊:

  • mybatis-crypto-core 插件的核心功能模塊

  • mybatis-crypto-spring-boot-starter 提供了 Spring boot 快速整合功能

  • mybatis-crypto-encryptors 提供了一些 IEncryptor 實現(xiàn)

使用方法

引入依賴

<dependency>
    <groupId>io.github.whitedg</groupId>
    <artifactId>mybatis-crypto-spring-boot-starter</artifactId>
    <version>${latest.version}</version>
</dependency>

實現(xiàn) IEncryptor

import io.github.whitedg.mybatis.crypto.IEncryptor;
public class MyEncryptor implements IEncryptor {
    @Override
    public String encrypt(Object val2bEncrypted, String key) throws Exception {
        // 實現(xiàn)這個方法返回加密后的數(shù)據(jù)
        return "encrypted string";
    }

    @Override
    public String decrypt(Object val2bDecrypted, String key) throws Exception {
        // 實現(xiàn)這個方法返回解密后的數(shù)據(jù)
        return "decrypted string";
    }
}

或者引入 mybatis-crypto-encryptors

<dependency>
    <groupId>io.github.whitedg</groupId>
    <artifactId>mybatis-crypto-encryptors</artifactId>
    <version>${latest.version}</version>
</dependency>

使用其提供的 Encryptor:

  • io.github.whitedg.mybatis.crypto.Base64Encryptor

  • io.github.whitedg.mybatis.crypto.BasicTextEncryptor

  • io.github.whitedg.mybatis.crypto.AES256Encryptor

  • io.github.whitedg.mybatis.crypto.StrongTextEncryptor

添加配置

mybatis-crypto:
  # 是否啟用插件,默認 true
  enabled: true
  # 快速失敗,默認 true
  fail-fast: false
  # 全局默認 Encryptor
  default-encryptor: io.github.whitedg.mybatis.crypto.BasicTextEncryptor
  # Encryptor 默認密鑰
  default-key: global-key
  # mybatis @Param 注解下需要加解密的參數(shù) key 前綴
  mapped-key-prefixes: et,encrypted

指定加密字段

  • 在需要加解密的字段上添加注解 @EncryptedField

public class User {
    @EncryptedField
    private String encryptedStr;

    @EncryptedField(encryptor = YourEncryptor.class, key = "Your Key")
    private String customizedStr;
}
  • 使用配置的 @Param 參數(shù) key 前綴

import org.apache.ibatis.annotations.Param;
interface YourEntityMapper {
    int insert(@Param("et") YourEntity entity);
    // 支持數(shù)組
    int batchInsert(@Param("encrypted-entities") List<YourEntity> entity);
    // 返回值也支持單個對象或數(shù)組
    YourEntity selectOne();
    List<YourEntity> selectList();
}

Demo

配置項說明

配置項說明默認值
mybatis-crypto.enabled是否啟用 mybatis-cryptotrue
mybatis-crypto.fail-fast快速失敗,加解密過程中發(fā)生異常是否中斷。true:拋出異常,false:使用原始值,打印 warn 級別日志true
mybatis-crypto.mapped-key-prefixes@Param 參數(shù)名的前綴,前綴匹配則會進行加密處理
mybatis-crypto.default-encryptor全局默認 Encryptor
mybatis-crypto.default-key全局默認 Encryptor 的密鑰

感謝各位的閱讀,以上就是“怎么通過一個注解實現(xiàn)MyBatis字段加解密”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對怎么通過一個注解實現(xiàn)MyBatis字段加解密這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI