怎么在SpringBoot項(xiàng)目中利用application.yml文件配置數(shù)據(jù)庫密碼加密,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供濟(jì)陽網(wǎng)站建設(shè)、濟(jì)陽做網(wǎng)站、濟(jì)陽網(wǎng)站設(shè)計(jì)、濟(jì)陽網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、濟(jì)陽企業(yè)網(wǎng)站模板建站服務(wù),十載濟(jì)陽做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
使用@SpringBootApplication注解啟動(dòng)的項(xiàng)目,只需增加maven依賴
我們對信息加解密是使用這個(gè)jar包的:
編寫加解密測試類:
package cn.linjk.ehome; import org.jasypt.encryption.pbe.StandardPBEStringEncryptor; import org.jasypt.encryption.pbe.config.EnvironmentPBEConfig; import org.junit.Test; public class JasyptTest { @Test public void testEncrypt() throws Exception { StandardPBEStringEncryptor standardPBEStringEncryptor = new StandardPBEStringEncryptor(); EnvironmentPBEConfig config = new EnvironmentPBEConfig(); config.setAlgorithm("PBEWithMD5AndDES"); // 加密的算法,這個(gè)算法是默認(rèn)的 config.setPassword("test"); // 加密的密鑰 standardPBEStringEncryptor.setConfig(config); String plainText = "88888888"; String encryptedText = standardPBEStringEncryptor.encrypt(plainText); System.out.println(encryptedText); } @Test public void testDe() throws Exception { StandardPBEStringEncryptor standardPBEStringEncryptor = new StandardPBEStringEncryptor(); EnvironmentPBEConfig config = new EnvironmentPBEConfig(); config.setAlgorithm("PBEWithMD5AndDES"); config.setPassword("test"); standardPBEStringEncryptor.setConfig(config); String encryptedText = "ip10XNIEfAMTGQLdqt87XnLRsshu0rf0"; String plainText = standardPBEStringEncryptor.decrypt(encryptedText); System.out.println(plainText); } }
加密串拿到了,現(xiàn)在來修改application.yml的配置:
我們把加密串放在ENC({加密串})即可。
啟動(dòng)時(shí)需要配置 秘鑰
將秘鑰加入啟動(dòng)參數(shù)
關(guān)于怎么在SpringBoot項(xiàng)目中利用application.yml文件配置數(shù)據(jù)庫密碼加密問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。