大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
springboot 集成 jasypt
Jasypt不简介了,懒得在官网copy, 直接传送官网
说啥都假的,简单粗暴直接上代码
- 引入依赖
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
- 配置加密参数
2.1 使用 properties文件配置
jasypt.encryptor.password=jasypt
2.2 使用 yml文件配置
jasypt:
encryptor:
password: jasypt
除了以上两种配置个人推荐使用启动参数配置
idea 配置方法
- 两种生成加密密匙方式
3.1 使用spring boot单元测试import org.jasypt.encryption.StringEncryptor; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class JasyptTest { @Autowired private StringEncryptor stringEncryptor; @Test public void encryptPwd() { //加密123456 String result = stringEncryptor.encrypt("123456"); System.out.println(result); } }
3.2 使用工具类
import org.jasypt.encryption.pbe.PooledPBEStringEncryptor; import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig; /** * @author shuzhuo * @date 2019/1/9 9:56 */ public class JasyptUtil { /** * Jasypt生成加密结果 * @param password 配置文件中设定的加密密 * @param value 加密值 * @return */ public static String encyptPwd(String password,String value){ PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor(); encryptor.setConfig(cryptor(password)); String result = encryptor.encrypt(value); return result; } /** * 解密 * @param password 配置文件中设定的加密密码 * @param value 解密密文 * @return */ public static String decyptPwd(String password,String value){ PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor(); encryptor.setConfig(cryptor(password)); String result = encryptor.decrypt(value); return result; } public static SimpleStringPBEConfig cryptor(String password){ SimpleStringPBEConfig config = new SimpleStringPBEConfig(); config.setPassword(password); config.setAlgorithm("PBEWithMD5AndDES"); config.setKeyObtentionIterations("1000"); config.setPoolSize("1"); config.setProviderName("SunJCE"); config.setSaltGeneratorClassName("org.jasypt.salt.RandomSaltGenerator"); config.setStringOutputType("base64"); return config; } public static void main(String[] args){ //加密 System.out.println(encyptPwd("jasypt","123456")); //解密 System.out.println(decyptPwd("jasypt","lnzpDZItgjAntHqsYPFTew==")); } }
- 将生成的加密密匙配置在配置文件中即可,ENC 是约定的关键字,在启动时会解析所有 PropertySource 中的加密属性。
4.1 这里更改yml配置中连接数据库的密码
spring:
datasource:
password: ENC(lnzpDZItgjAntHqsYPFTew==)
如果是使用启动参数配置打包为jar 或war怎么配置呢?
jar: 命令:java -Djasypt.encryptor.password=jasypt -jar xxx.jar
war:
到Tomcat的bin目录下,打开文件catalina.bat/catalina.sh,添加如下参数,然后保存
加上启动参数配置
window:catalina.bat
set JAVA_OPTS="-Djasypt.encryptor.password=jasypt"
Linux:catalina.sh
JAVA_OPTS="-Djasypt.encryptor.password=jasypt"
或者直接在tomcat bin 目录新建setenv.bat setenv.sh
文件内容如下
Windows:
set JAVA_OPTS="-Djasypt.encryptor.password=jasypt"
Linux:
export JAVA_OPTS="-Djasypt.encryptor.password=jasypt"
更多请参考 jasypt github 文档
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/189267.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...