I have developed some Spring Boot Project and I have initiated my database connection by using spring.datasource.username and spring.datasource.password in application.properties
I have tried to use jasypt to encrypt these properties but I think this is not a good way because I still need to store jasypt.encryptor.password which is not encrypted in application.properties.
I am having difficulties finding the solutions because the results from Internet just mention jasypt.
Are there any better way to protect username and pass for Spring Boot?