美文网首页
笔记:jasypt报错Failed to bind proper

笔记:jasypt报错Failed to bind proper

作者: IFLEU | 来源:发表于2020-06-28 20:19 被阅读0次

    依赖用的是

    <dependency>
            <groupId>com.github.ulisesbocchio</groupId>
            <artifactId>jasypt-spring-boot-starter</artifactId>
            <version>3.0.1</version>
    </dependency>
    

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

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

    参考链接

    相关文章

      网友评论

          本文标题:笔记:jasypt报错Failed to bind proper

          本文链接:https://www.haomeiwen.com/subject/gmxgfktx.html