1.添加maven依賴git
<dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>1.8</version> </dependency>
2.配置加密參數github
jasypt: encryptor: password: 123456
spring: jpa: show-sql: true hibernate: ddl-auto: update datasource: url: jdbc:postgresql://localhost:5432/postgres driver-class-name: org.postgresql.Driver username: postgres password: ENC(EbfYkitulv73I2p0mXI50JMXoaxZTKJ7) validation-query: SELECT 1 test-while-idle: true test-on-borrow: true
@Autowired StringEncryptor stringEncryptor; @Test public void encryptPwd() { String result = stringEncryptor.encrypt("yourpassword"); System.out.println(result); }