您好,登錄后才能下訂單哦!
這篇“SpringBoot怎么配置文件中數據庫加密”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“SpringBoot怎么配置文件中數據庫加密”文章吧。
1.導入依賴
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>2.1.2</version>
</dependency>
2.找到jasypt-1.9.2.jar所在位置,打開cmd
3.輸入如下命令執行
java -cp jasypt-1.9.2.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI input="123456" password=sad124f1f1rf1fgt5 algorithm=PBEWithMD5AndDES
input :明文密碼
password:要加的鹽(可自己設置)
algorithm:加密算法,這里使用 PBEWithMD5AndDES
4.在application.yml文件中配置
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
username: ENC(HPPHfpHVXzNf00SQLBrjug==)
password: ENC(F8ckXFGTF6Wu8dQ51hoNBw==)
url: jdbc:mysql://localhost:3306/foodie-shop-dev?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=GMT%2B8
jasypt:
encryptor:
password: sad124f1f1rf1fgt5
5.在啟動類Application.java中配置注解,配置完成
//配置數據庫加密注解
@EnableEncryptableProperties
6.小結
除了加密MySQL密碼的例子之外,當配置文件中有多個密碼、Token等需要加密時,這個方法就比較方便了。
除了支持字符串秘鑰,jasypt還支持key文件秘鑰,更加安全。
在安全要求很高時,還可以使用jasypt默認PBEWITHHMACSHA512ANDAES_256加密算法,該算法需要安裝JCE支持。
7.問題
問題描述:在Spring Boot中使用jasypt-spring-boot進行加密,但是提示:
Description:
Failed to bind properties under 'spring.datasource.password' to java.lang.String:
Reason: Failed to bind properties under 'spring.datasource.password' to java.lang.String
Action:
Update your application's configuration
解決辦法:
3.0.2更改了默認的加密算法,最后的辦法是把版本降到2.1.2
以上就是關于“SpringBoot怎么配置文件中數據庫加密”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。