云服务器网:购买云服务器和VPS必上的网站!

地址:springboot如何给数据库地址加密

springboot如何给数据库地址加密使用pringboot对数据库地址进行加密的方法1.首先,需要在springboot项目中导入依赖;com.github.ulisesbocchiojasypt-spring-boot-starter2.0.02.依赖导

springboot如何给数据库地址加密

使用pringboot对数据库地址进行加密的方法

1.首先,需要在springboot项目中导入依赖;

com.github.ulisesbocchio

jasypt-spring-boot-starter

2.0.0

2.依赖导入好后,在springboot中输入代码便可对数据库地址进行加密;

public class EncryptionPropertyConfig {

@Bean(name="encryptablePropertyResolver")

public EncryptablePropertyResolver encryptablePropertyResolver() {

return new EncryptionPropertyResolver();

}

class EncryptionPropertyResolver implements EncryptablePropertyResolver {

@Override

public String resolvePropertyValue(String value) {

if(StringUtils.isBlank(value)) {

return value;

}

// 值以DES@开头的均为DES加密,需要解密

if(value.startsWith("xxxxx@")) {

return resolveDESValue(value.substring(11));

}

// 不需要解密的值直接返回

return value;

}

private String resolveDESValue(String value) {

// 自定义DES密文解密

String decode="";

try{

decode = DESCode.decode(value);

}catch (Exception e){

e.printStackTrace();

System.out.println("解密失败!:"+ value);

}

System.out.println("value :"+value +" :"+decode);

return decode;

}

}

}

本文来源:https://www.yuntue.com/post/61560.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注