spring boot 自定义配置文件
程序员文章站
2022-04-30 23:11:31
...
@Configuration
@PropertySources({
@PropertySource("classpath:redis.properties"),
@PropertySource("classpath:apple.properties")
})
public class PropertyConfig {
}
使用:
@Value("${apple.color}")
private String port;