I am using Springboot with Spring JPA. My application is connecting to database and I am currently using
spring.datasource.url=jdbc:oracle:thin:@.....
spring.datasource.username=blahblah
spring.datasource.password=xyz
, specified in Spring application.properties file.
This is all working fine; however, we dont want to proivide this information to developers but instead let our servers team set these inside the production servers running WAS Liberty (or Open Liberty).
How to use these credentials in Liberty server.xml and have Spring JPA still do what it needs to do?