使用jasypt加密 报错

错误信息

Description:

Failed to bind properties under 'mybatis.configuration.mapped-statements[0].parameter-map.parameter-mappings[0]' to org.apache.ibatis.mapping.ParameterMapping:

    Reason: Failed to extract parameter names for org.apache.ibatis.mapping.ParameterMapping(org.apache.ibatis.mapping.ParameterMapping$1)

只是加入jar包,启动之后就会报错。这个是boot版本和jasypt匹配问题。看官网可以知道目前jasypt只支持2.1.0的boot 版本。我正常使用的版本是jasypt2.1.0 对应boot 2.1.0.

补充

最近又研究了一下,因为发现有人在boot 2.2.0以上的版本用了这个加密。
boot版本2.2.0,对应加密版本如下:

>
    >com.github.ulisesbocchio>
    >jasypt-spring-boot>
    >3.0.3>
>

、

注:推荐使用上面引入方式而不用jasypt-spring-boot-starter,因为它不好控制加密的禁用和启用。用上面这种方式的话,只需要在启动类上加上@EnableEncryptableProperties注解就可以启用。禁用的话,注释掉就可以了
使用jasypt加密 报错_第1张图片
配置完成后启动报错,错误信息如开头一样,百度到有说Spring Boot 2.2.0 和 mybatis 3.5.2 的不兼容问题? 但我的mybatis是3.5.3,而且以前没有加密时的,也是可以用的。
但是照它说的,升级boot 为2.2.1之后,确实解决了这个问题。说明还是boot版本和加密的不兼容问题。

得出boot2.2.1 对应 jasypt-spring-boot 3.0.3也是可行的

其他

附上 jasypt-spring-boot 3.0.3对应的加密测试类,用以生成密文。从代码可以看出,这个测试是需要启动上下文的,说明密钥是存在上下文中(要么是yml配置文件,要么是启动参数)。注意新的加密生成的密文长度和以前不一样

package com.czbank.provider.util;

import com.czbank.provider.ProviderApp;
import org.jasypt.encryption.StringEncryptor;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * @author aliyu
 * @create 2020-06-28 15:56
 * 类描述:
 */
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = ProviderApp.class)
class JasyptUtilTest {

    @Autowired
    private StringEncryptor encryptor;
    @Test
    void testEncrypt() {
        String encryptedText = encryptor.encrypt("mofsfely");
        System.out.println("加密后的密文:"+encryptedText);//加密
        String plainText = encryptor.decrypt(encryptedText);//解密

        System.out.println("解密后的明文:"+plainText);//解密
    }
}

你可能感兴趣的:(加解密和安全)