springboot的配置文件yml密码加密

偶然间看到开发的项目中的配置文件的密码都是明文加密,所以决定对密码进行一下加密

1.pom.xml加入依赖

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

2.编写一个测试类

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");          // 加密的算法,这个算法是默认的
	        config.setPassword("Hello");                        // 加密的密钥,随便自己填写,很重要千万不要告诉别人
	        standardPBEStringEncryptor.setConfig(config);
	        String plainText = "123456";         //自己的密码
	        String encryptedText = standardPBEStringEncryptor.encrypt(plainText);
	        System.out.println(encryptedText);
	    }
	 
	    @Test
	    public void testDe() throws Exception {
	        StandardPBEStringEncryptor standardPBEStringEncryptor = new StandardPBEStringEncryptor();
	        EnvironmentPBEConfig config = new EnvironmentPBEConfig();
	 
	        config.setAlgorithm("PBEWithMD5AndDES");
	        config.setPassword("Hello");
	        standardPBEStringEncryptor.setConfig(config);
	        String encryptedText = "uDZT5i+7Mjq5PHGFmpXmrTohbvw0E6ys";   //加密后的密码
	        String plainText = standardPBEStringEncryptor.decrypt(encryptedText);
	        System.out.println(plainText);
	    }

	
}

run一下testEncrypt()方法就是加密后的密码
反之testDe()方法就是解密。 请注意 config.setPassword(“Hello”); Hello是你自己的秘钥,一定要注意,把这个秘钥交给别人,别人就可以随便破解了。有的人可能就说了秘钥肯定是要放在配置文件里吧,明白的人一看就看出来了,但是很多攻击者看的只是明文,现在已经不是明文,能加隐秘性。

生成密码除了第二步之外还有可以使用cmd来生成密码,网上很多这种的就不再介绍了。

3.在启动类上加上@EnableEncryptableProperties注解

@SpringBootApplication()
@EnableEncryptableProperties //开启加密注解
public class IntegrationSecurityApplication {

	public static void main(String[] args) {
		SpringApplication.run(IntegrationSecurityApplication.class, args);
	}

}

4.在yml的配置文件中加入以下代码;

jasypt:
  encryptor:
    password: Hello  //你的秘钥

在有密码的地方就可以进行加密了

spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    platform: mysql
    url: jdbc:mysql://1270.0.01:3308/sys_system?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&serverTimezone=Asia/Shanghai
    username: root
    password: ENC(k4LdGE0s7Ea5maFfS92+MM7NUzTWwb4y)   //加密后的密码

注意:在粘贴你加密的密码时要把密码放在ENC()的()里面才能成功。

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文件中,初始化时会自动解密。注意,加密过程通常发生在部署前,而不是运行时。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值