使用jasypt对spring boot的datasource中数据库密码加密

  • maven依赖

<dependency>
    <groupId>com.github.ulisesbocchiogroupId>
    <artifactId>jasypt-spring-boot-starterartifactId>
    <version>1.8version>
dependency>
  • 配置加密参数
jasypt:
  encryptor:
    password: saltnewfor
  • 获取加密密码
java -cp jasypt-1.9.2.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI input="pass123" password=saltnewfor algorithm=PBEWithMD5AndDES
  • 输出日志:

—-ENVIRONMENT—————–
Runtime: Oracle Corporation Java HotSpot(TM) 64-Bit Server VM 25.121-b13
—-ARGUMENTS——————-
algorithm: PBEWithMD5AndDES
input: pass123
password: saltnewfor
—-OUTPUT———————-
s2D39aZ6ZC+HG/W/Ue6JJQ==

  • 使用加密
spring:
    freemarker:
        suffix: .html
    datasource:
        url: jdbc:postgresql://192.168.1.119:5433/mem-hm-dev
        username: memhm
        password: ENC(s2D39aZ6ZC+HG/W/Ue6JJQ==)
        test-while-idle: true
    jpa:
        database: POSTGRESQL

你可能感兴趣的:(SpringBoot)