Spring boot配置文件加密

本文介绍了如何在Springboot项目中使用Jasypt库进行配置文件的加密和解密,通过引入jasypt-spring-boot-starter依赖,并设置盐值,实现了对敏感信息如密码的加密保护。同时提供了JasyptUtil工具类用于加密和解密操作,确保了应用的安全性。
摘要由CSDN通过智能技术生成

Spring boot配置文件加密

JAR包

<!-- 配置文件加密 -->
<dependency>
    <groupId>com.github.ulisesbocchio</groupId>
    <artifactId>jasypt-spring-boot-starter</artifactId>
    <version>1.16</version>
</dependency>

盐值 jasPassword 加在配置文件中

jasypt:
  encryptor:
    password: ******

Jasypt配置文件密码加密解密工具类

package com.deloitte.pms.performance.provider.utils;

import org.jasypt.util.text.BasicTextEncryptor;

/*
* Jasypt配置文件密码加密解密工具类
*
* */
public class JasyptUtil {

    /*
    * 加密
    * */
    public static String encrypt(String password, String jasPassword) {
        BasicTextEncryptor encryptor = new BasicTextEncryptor();
        // 加密所需的salt(盐)application.properties, jasypt.encryptor.password
        encryptor.setPassword(jasPassword);

        // 要加密的数据(数据库的用户名或密码)encrypt root
        return encryptor.encrypt(password);
    }

    /*
    * 解密
    * */
    public static String decrypt(String password, String jasPassword) {
        BasicTextEncryptor encryptor = new BasicTextEncryptor();
        // 解密所需的salt(盐)application.properties, jasypt.encryptor.password
        encryptor.setPassword(jasPassword);

        // 解密:decrypt, the result is root
        return encryptor.decrypt(password);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值