I want to use spring boot, oracle db and hibernate. I want to load username and password for oracle db schema by two files( user.txt and password.txt). Can i use hibernate? I don't know how to load the username and the password from file in application.properties for hibernate. (spring.datasource.username = load from user.txt, spring.datasource.password = load from password.txt). User and password are encrypted in files.
Does anyone have an idea how i do that?