在web项目中我们看到application文件中很多出现配置项是ENC(xxxxx),这就表示xxx这个参数是经过加密之后的结果。
我们想要在其他地方使用参数必须要做解密。以下是实现方法。
加解密的实现依赖jasypt。所以需要引入以下jar包
<dependency> <groupId>org.jasypt</groupId> <artifactId>jasypt</artifactId> <version>1.9.3</version> </dependency>
加解密方法
package com.spring.demo.demo_3_enc;
import org.jasypt.encryption.pbe.StandardPBEStringEncryptor;
public class EncTest {
public static void main(String[] args) {
String password = "mySecretPassword";
StandardPBEStringEncryptor encryptor = new StandardPBEStringEncryptor();
encryptor.setPassword(password);
String encryptedText = encryptor.encrypt("12345676879876543");
System.out.println("Encrypted Text: " + encryptedText);
String decryptedText = encryptor.decrypt(encryptedText);
System.out.println("Decrypted Text: " + decryptedText);
}
}
其中 password是必须提供的参数。这个参数会在application配置文件中包含。你可以在application.properties或application.yml文件中设置该属性:
jasypt.encryptor.password=mySecretPassword
jasypt:
encryptor:
password: mySecretPassword
如果在application配置文件没有,则可能是在启动的java项目的命令中加如了这个参数 ,如以下:
/opt/java/jdk8/bin/java -jar -Xmx512m -Xms512m -Djasypt.encryptor.password=mySecretPassword -Dspring.profiles.active=dev /home/xxxx/test-demo.jar文章来源:https://www.toymoban.com/news/detail-840802.html
- Djasypt.encryptor.password就是配置 jasypt.encryptor.password 参数的。文章来源地址https://www.toymoban.com/news/detail-840802.html
到了这里,关于springboot的配置项ENC加解密的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!