springboot 动态加密数据源url、用户名、密码等
使用 jasypt技术 对 配置文件中的敏感信息进行加密
可以访问官网 http://www.jasypt.org/howtoencryptuserpasswords.html
对应的github地址 https://github.com/ulisesbocchio/jasypt-spring-boot
- 在项目pom中引入依赖
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>1.16</version>
</dependency>
- 查看官方文档我们可以看出,有一个配置是必须要配的,在我们的项目yml配置密钥
- 就以上两步说明加密在我们项目中已经配置成功了,接下来我们看如何使用它。写一个测试接口类,如下:
package com.test.api.controller;
import org.apache.commons.lang3.StringUtils;
import org.jasypt.encryption.StringEncryptor;
import org.springframewor