1. 程式人生 > >springboot 配置檔案配置為物件

springboot 配置檔案配置為物件

@Bean
public Properties appConstantsProperties() throws IOException {
PropertiesFactoryBean propertiesFactoryBean = new PropertiesFactoryBean();
propertiesFactoryBean.setLocation(new ClassPathResource("/app-constants.properties"));
propertiesFactoryBean.afterPropertiesSet();
return propertiesFactoryBean.getObject();
}