spring boot 配置数据库加密

1.pom.xml 文件中引

		<!-- https://mvnrepository.com/artifact/com.github.ulisesbocchio/jasypt-spring-boot-starter -->
		<!-- 整合jasypt对数据库密码加密 -->
		<dependency>
			<groupId>com.github.ulisesbocchio</groupId>
			<artifactId>jasypt-spring-boot-starter</artifactId>
			<version>1.16</version>
		</dependency>

2.在windows下命令生成加密密文

java -cp G:\maven\repository\org\jasypt\jasypt\1.9.2\jasypt-1.9.2.jar org.jasypt.intf.cli.JasyptPBEStringEncryptionCLI input="you4new!" password=saltnewfor algorithm=PBEWithMD5AndDES

参数说明:

input =数据库链接密码

password=加密字段,随意设置

algorithm= 算法

执行后有以下输出


----ENVIRONMENT-----------------

Runtime: Oracle Corporation Java HotSpot(TM) 64-Bit Server VM 25.131-b11



----ARGUMENTS-------------------

algorithm: PBEWithMD5AndDES
input: you4new!
password: saltnewfor



----OUTPUT----------------------

UK61bS+W/BskHl0N0ViAQcrPAmZLZZwO

3.在spring boot 项目的配置文件中加入以下内容

#spring.datasource.url=jdbc:mysql://localhost:3306/Solrsearch
#spring.datasource.username=root
#jasypt.encryptor.password=${password}
#jasypt.encryptor.password=aidan123456
#spring.datasource.password=ENC(UK61bS+W/BskHl0N0ViAQcrPAmZLZZwO)
#spring.datasource.driver-class-name=com.mysql.jdbc.Driver

 
 

https://www.ricston.com/blog/encrypting-properties-in-spring-boot-with-jasypt-spring-boot/

https://www.ricston.com/blog/encrypting-properties-in-spring-boot-with-jasypt-spring-boot/

http://www.cnblogs.com/zz0412/p/jasypt-001.html

https://github.com/ulisesbocchio/jasypt-spring-boot

 
 
 
 
 
 
 

猜你喜欢

转载自blog.csdn.net/m0_37504101/article/details/78271771