Spring Boot学习 之 关于读取配置文件的方法配置文件@ValueConfigurationProperties@PropertySource@Conditional
配置文件spring.datasource.url=jdbc:p6spy:h2:mem:testdbspring.datasource.username=sa@Value@Value注解,使用 ${…} 占位符读取配置在属性文件的内容。@Value,既可以加载属性,也可以加在方法上。@Componentpublic class DatasourceEntity { @Value("${spring.datasource.url}") private String