2020
10-09
10-09
SpringBoot 集成 Jasypt 对数据库加密以及踩坑的记录分享
前言密码安全是非常重要的,因此我们在代码中往往需要对密码进行加密,以此保证密码的安全加依赖<!--jasypt--><dependency><groupId>com.github.ulisesbocchio</groupId><artifactId>jasypt-spring-boot-starter</artifactId><version>3.0.3</version></dependency>加配置#jasypt密码加密配置jasypt:encryptor:#加密盐值password:jasypt#加密算法设置3.0.0以后algorithm:PBEWithMD5AndDESiv-generator-classnam...
继续阅读 >