spring boot项目实现jasypt关于加密问题

简介:

Jasypt 是一个Java库,允许开发人员以很简单的方式添加基本加密功能,而无需深入研究加密原理。

添加maven依赖引入jasypt:

com.github.ulisesbocchio jasypt-spring-boot-starter 1.14 配置加密密码参数 jasypt.encryptor.password=root

写了简单的测试用例

    import lombok.extern.slf4j.Slf4j;
    import org.jasypt.encryption.StringEncryptor;
    import org.junit.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.SpringRunner;
    
    @RunWith(SpringRunner.class)
    @SpringBootTest
    @Slf4j
    public class ZcsjBaseApplicationTests {
    
        @Autowired
        private StringEncryptor encryptor;
    
        @Test
        public void getPass() {
            String name = encryptor.encrypt("root");
            String password = encryptor.encrypt("root");
            log.info("name:[{}]; pwd:[{}]", name, password);
        }
    }

这个数据码每次生成是随机的:
spring.datasource.password=ENC(1o23FCDMG3fpk9vqyRkKGA==)

postman测试下:
spring boot项目实现jasypt关于加密问题_第1张图片

以上,测试完成

你可能感兴趣的:(Spring,Boot)