jasypt实现自定义加密配置文件

一、导入依赖

  
        com.github.ulisesbocchio
        jasypt-spring-boot-starter
        3.0.2
    

二 、 实现 可加密属性检测器

@Component
public class MyEncryptablePropertyDetector implements EncryptablePropertyDetector {
//自定义的加入值,也就是 application.properties 里 value 的前缀,
public static final String ENCODED_PASSWORD_HINT = “encry_”;
@Override
public boolean isEncrypted(String property) {
if (null != property) {
return property.startsWith(ENCODED_PASSWORD_HINT);
}
return false;
}

@Override
public String unwrapEncryptedValue(String property) {
    return property.substring(ENCODED_PASSWORD_HINT.length());
}

}
三 、 实现可加密资源属性值

public class MyEncryptablePropertyResolver implements EncryptablePropertyResolver {
@Autowired
MyEncryptablePropertyDetector encryptablePropertyDetector;
@Override
public String resolvePropertyValue(String value) {
if (null != value && encryptablePropertyDetector.isEncrypted(value)) {
//对配置文件加密值进行解密。加密方式可以自定义
value = encryptablePropertyDetector.unwrapEncryptedValue(value);
//使用base64 解密 value带有前缀的值
byte[] decoded = Base64.getDecoder().decode(value);
String decodeStr = new String(decoded);
return decodeStr;
}
return value;
}
}
四、注入配置
@Configuration
public class Config {
@Bean
public EncryptablePropertyResolver encryptablePropertyResolver() {
return new MyEncryptablePropertyResolver();
}
}

你可能感兴趣的:(工具类,数据库)