- 導(dǎo)入依賴
<!-- 加密依賴 -->
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>3.0.2</version>
</dependency>
- 加密
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("12345"); // 加密的密鑰
standardPBEStringEncryptor.setConfig(config);
String plainText = "hello";
String encryptedText = standardPBEStringEncryptor.encrypt(plainText);
System.out.println(encryptedText);
}
}
- 在application.yml文件中配置
//之前的鹽
jasypt:
encryptor:
password: 12345
algorithm: PBEWithMD5AndDES
ivGeneratorClassname: org.jasypt.salt.RandomIVGenerator
//ENC(加密的密文)
spring:
datasource:
username:ENC(sBdk7fXxdnCZMzPjGkZr0g==)
password:ENC(sBdk7fXxdnCZMzPjGkZr0g==)
- 啟動(dòng)類加入注解
/配置數(shù)據(jù)庫(kù)加密注解
@EnableEncryptableProperties
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者