笔记:jasypt报错Failed to bind properties under 'xxx.xxx.xxx' to java.lang.String

依赖用的是


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

查了相关资料,找到的原因是版本升级导致jasypt的默认算法修改了。
在配置中得加上以下代码或者使用旧的版本。

jasypt:
  encryptor:
    password: xxx
    algorithm: PBEWithMD5AndDES
    iv-generator-classname: org.jasypt.iv.NoIvGenerator

参考链接

你可能感兴趣的:(笔记:jasypt报错Failed to bind properties under 'xxx.xxx.xxx' to java.lang.String)