1.jasypt配置的盐值(加密秘钥)和密文要记得分开保存; 2.生产环境为了安全,一般不在yml配置文件中配置jasypt的加密密钥,而是选择在启动服务时加上解密的密钥;
2.1 使用Jasypt-Spring-Boot-Starter依赖在项目的配置文件(例如Maven的pom.xml)中添加以下依赖: <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>2.1.0</version> </dependency> 1. 2. 3. 4. 5. 2.2 启动类添加注解在启动类上添加...