Spring表达式在PropertySource注释中不起作用。
@PropertySource({ "classpath:application.properties",
"#{systemProperties['user.home']}/.app.properties" })
@Configuration
public class Config {
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
PropertySourcesPlaceholderConfigurer result = new PropertySourcesPlaceholderConfigurer();
result.setOrder(0);
return result;
}
}
答案 0 :(得分:8)
您可以直接使用file:${user.home}
加载用户主目录下的文件:
@PropertySource({ "classpath:application.properties",
"file:${user.home}/.app.properties" })
@Configuration
public class Config {
}