springboot使用jasypt对的datasource密码加密

springboot版本1.5.9
github文档

1.Maven 依赖


<dependency>
    <groupId>com.github.ulisesbocchiogroupId>
    <artifactId>jasypt-spring-boot-starterartifactId>
    <version>1.17version>
dependency>

2.配置加密参数(可以理解为加密的salt)

jasypt:
  encryptor:
    password: BdaObXaELAA   #(或者用123456)

3.使用加密

(这里需要注意 BfsoZM9dAAU4lVp+pE47Y/0N9fqcci1A 为加密后的字符串 需要放到ENC里面)

datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/saas_official_document?useUnicode=true&characterEncoding=utf8
    username: appuser
    password: ENC(BfsoZM9dAAU4lVp+pE47Y/0N9fqcci1A)

4.加密密码

cmd运行下面的,将其中jar的位置改变,好友password是项目配置中配置的jasypt.encryptor.password=BdaObXaELAA,input是原始的密码

java -cp C:\Users\Administrator\.m2\repository\org\jasypt\jasypt\1.9.2\jasypt-1.9.2.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI input="123456" password=BdaObXaELAA algorithm=PBEWithMD5AndDES

springboot使用jasypt对的datasource密码加密_第1张图片

你可能感兴趣的:(springboot)