@PropertySource - ( ). Java 8 , ! , :
@SpringBootApplication
@PropertySource("classpath:/db.properties")
@PropertySource(ignoreResourceNotFound = true, value = "file:${MY_APP_HOME}/db.properties")
@PropertySource(ignoreResourceNotFound = true, value = "file:${user.home}/.myapp/db.properties")
@ComponentScan("com.myorg")
public class Application {
}
, MY_APP_HOME
, . , ignoreResourceNotFound
true.
. src/main/resources/db.properties
. , .
. Resolving ${...} placeholders within @PropertySource resource locations
javadoc.