spring boot 集成druid-spring-boot-starter 实现数据库密码加密
spring boot 集成druid-spring-boot-starter 实现数据库密码加密
首先在spring boot 项目中引入
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
在application.properties中开启支持配置
spring.datasource.druid.filter.config.enabled=true
配置支持密码解密
spring.datasource.druid.connectionProperties=config.decrypt=true;onfig.decrypt.key=;
配置加密的密码
spring.datasource.druid.passwordpublickey=;
druid 密码加密使用com.alibaba.druid.filter.config.ConfigTools 进行
就这样配置就可以实现数据库连接密码是密文的;
大家可以试试,
联系方式:
QQ:906618194
阿里云双十一云主机组团优惠
https://m.aliyun.com/act/team1111/?spm=5176.11533457.1089570.5.52f777e3ZHmzSo&userCode=nbog3w5j#/
下一篇:spring boot 自动化部署