SpringBoot-yml配置文件密码加密(默认的MD5加密方式)

引入jar包

       <dependency>
            <groupId>com.github.ulisesbocchio</groupId>
            <artifactId>jasypt-spring-boot-starter</artifactId>
            <version>2.1.0</version>
        </dependency> 

yml添加配置

按照自己所需添加

jasypt:
  encryptor:
    password: shdchHJDK32FJ

测试加密

    public static void main(String[] args) {
        StandardPBEStringEncryptor standardPBEStringEncryptor = new StandardPBEStringEncryptor();
        EnvironmentPBEConfig config = new EnvironmentPBEConfig();
        // 加密的算法,这个算法是默认的
        config.setAlgorithm("PBEWithMD5AndDES");
        // 加密的密钥,随便自己填写,很重要千万不要告诉别人
        config.setPassword("Y6M9fAJQdU7jNp5MW");
        standardPBEStringEncryptor.setConfig(config);
        //要加密的密码
        String plainText = "1234567";
        String encryptedText = standardPBEStringEncryptor.encrypt(plainText);
        System.out.println(encryptedText);
    }

结果:ICEb0CnC+4aSBiouxJwP6Q==

测试解密

    public static void main(String[] args) {
        StandardPBEStringEncryptor standardPBEStringEncryptor = new StandardPBEStringEncryptor();
        EnvironmentPBEConfig config = new EnvironmentPBEConfig();

        config.setAlgorithm("PBEWithMD5AndDES");
        config.setPassword("Y6M9fAJQdU7jNp5MW");
        standardPBEStringEncryptor.setConfig(config);
        String encryptedText = "hc7DB7XRNcl6WbzUZX3c8w==";   //加密后的密码
        String plainText = standardPBEStringEncryptor.decrypt(encryptedText);
        System.out.println(plainText);
    }

结果:1234567

注意⚠️

例子
username: ENC(CGitVEUe+fCzdSi4OMaQ683myHc+/qNn)
password: ENC(6KWGGYTm+bytaI5sGOALuBOQWlwiDum3)
后面一定要这样:ENC()
如下:

# Mysql数据库
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:21095/mh_prod?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT
    username: ENC(CGitVEUe+fCzdSi4OMaQ683myHc+/qNn)
    password: ENC(6KWGGYTm+bytaI5sGOALuBOQWlwiDum3)
    filters: wall,mergeStat
    # 连接池大小根据实际情况调整
    max-active: 20
    max-pool-prepared-statement-per-connection-size: 20
Spring Boot 是一款流行的开源框架,它简化了构建企业级 Java 应用程序的过程。YAML (Yet Another Markup Language) 是一种人类友好的数据序列化语言,常用于配置文件,包括 Spring Boot 的应用配置。 在 Spring Boot 中,YML 文件通常用于存储应用程序的各种配置信息,如数据库连接、环境变量等。对于敏感信息如密码,为了安全,Spring Boot 提供了一种策略来处理:可以对 YML 中的敏感数据进行加密。 首先,在YML文件中,你可以直接明文输入密码: ```yaml spring: datasource: password: 'your-plain-text-password' ``` 然后,Spring Boot 提供了一个工具叫做`@PropertySource`和`@ConfigurationProperties`注解,它们配合`spring-boot-encryptor`或第三方库(如`spring-cloud-config-server-encrypt`)来处理加密。你需要在启动类或配置类上添加`EnableEncryptableProperties`注解,并创建一个加密服务(例如使用 `BCryptPasswordEncoder` 或 `AesCipherService`),示例如下: ```java @Configuration @EnableEncryptableProperties(prefix = "spring.datasource") public class AppConfig { @Autowired private EncryptableProperties encryptableProperties; @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } // 使用密码编码服务加密和解码 @PostConstruct public void init() { String encryptedPassword = encryptableProperties.getProperty("password"); System.out.println("Encrypted Password: " + encryptedPassword); } } ``` 在这个例子中,`your-plain-text-password`会被自动加密并存储在YML文件中,初始化时会自动解密。注意,加密过程通常发生在部署前,而不是运行时。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值