原始做法:读取到文件内容,再进行bean的绑定文章来源:https://www.toymoban.com/news/detail-645963.html
public static void readProperties(String propertiesPath) throws IOException {
Properties pps = new Properties();
pps.load(MainApplication.class.getClassLoader().getResourceAsStream("application.properties"));
Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
while(enum1.hasMoreElements()) {
String strKey = (String) enum1.nextElement();
String strValue = pps.getProperty(strKey);
System.out.println(strKey + "=" + strValue);
//封装到JavaBean。
}
}
2种方式文章来源地址https://www.toymoban.com/news/detail-645963.html
1. @ConfigurationProperties + @Component
@Component //很多属性配置类都不会加这个注解所,所以会用到2
@ConfigurationProperties(prefix = "mycar")
public class MyCarProperty {
private String color;
private String brand;
2. @EnableConfigurationProperties + @ConfigurationProperties
@EnableConfigurationProperties(Car.class)
//1、开启Car配置绑定功能
//2、把这个Car这个组件自动注册到容器中
public class MyConfig {
}
@RestController
public class Controller{
@Autowired
MyCarProperty myCarProperty;
@RequestMapping("/car")
public MyCarProperty carRequest(){
return myCarProperty;
}
}
到了这里,关于第八章 SpringBoot @ConfigurationProperties配置绑定的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!