@Configuration
@PropertySource("db.properties")
public class ApplicationConfig {
// more config ...
}
//Or if you your config outside of your classpath, you can use the file: prefix:
@PropertySource("file:/path/to/application.properties")
使用多个文件:
@PropertySources({
@PropertySource("classpath:foo.properties"),
@PropertySource("classpath:bar.properties")
})
public class PropertiesWithJavaConfig {
//...
}
1条答案
按热度按时间j0pj023g1#
有很多方法可以读取文件。属性:
您可以使用以下纯java进行阅读:
你可以用
@PropertySource
Spring里的注解@Configuration
班级:使用多个文件:
等等。。。