I am building a spring boot application, can application.properties value get from another property
I have an application.properties like this
spring.datasource.url= jdbc:oracle:thin:@//localhost:1521/test
org.quartz.dataSource.qDS.URL=jdbc:oracle:thin:@//localhost:1521/ORCL
can Spring boot doing like this ?
db.connections.url=jdbc:oracle:thin:@//localhost:1521/test
spring.datasource.url= db.connections.url
org.quartz.dataSource.qDS.URL=db.connections.url