org.jasypt 和 jasypt-spring-boot-starter区别
时间: 2024-01-17 13:00:33 浏览: 80
这两个库都是用于加密和解密数据的库。org.jasypt是一个基本的加密库,它包含了各种加密算法并提供了一些简单易用的方法来使用这些加密算法;而jasypt-spring-boot-starter是一个Spring Boot的集成库,它使得在Spring Boot应用中使用Jasypt变得更加简单。
相关问题
Redisson3.15.0是否支持jasypt-spring-boot-starter,若支持,jasypt-spring-boot-starter的版本为多少
根据提供的引用内容,无法确定Redisson 3.15.0是否支持jasypt-spring-boot-starter以及其版本号。因为引用内容中只提供了CMake的下载地址,并没有提到Redisson或jasypt-spring-boot-starter的相关信息。为了确定Redisson是否支持jasypt-spring-boot-starter以及其版本号,建议您查阅Redisson和jasypt-spring-boot-starter的官方文档或者在相关社区进行咨询。
jasypt-spring-boot-starter集成到Spring boot中的具体步骤
可以参考以下步骤:
1. 在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
```
2. 在application.properties文件中添加以下配置:
```
jasypt.encryptor.password=yourpassword
```
3. 在需要加解密的地方使用@Value注解并加上{...},例如:
```
@Value("${jasypt.encryptor.encrypt('secret')}")
private String encryptedValue;
```
4. 在需要加密的地方使用StandardPBEStringEncryptor类的encrypt方法,例如:
```
StandardPBEStringEncryptor encryptor = new StandardPBEStringEncryptor();
encryptor.setPassword("yourpassword");
String encryptedText = encryptor.encrypt("secret");
```
阅读全文