configuration file of how application.yaml in SpringBoot is referenced.
spring:
datasource:
druid:
url: ${jdbc.url}
username: ${jdbc.username}
where jdbc.url
, jdbc.username
is in another file jdbc.yaml
.
how is it implemented?