1.编辑3个yml配置文件,一个为测试环境配置,一个为线上环境配置,一个为调用前面哪一个环境的配置
2.新建一个针对配置文件中girl前缀的class
注:需要添加两个注解 @Component 和 @ConfigurationProperties(prefix="girl")
3.在controller类中使用配置文件中的属性值
4.编辑application.yml文件中选择test或online运行项目
1.编辑3个yml配置文件,一个为测试环境配置,一个为线上环境配置,一个为调用前面哪一个环境的配置
2.新建一个针对配置文件中girl前缀的class
注:需要添加两个注解 @Component 和 @ConfigurationProperties(prefix="girl")
3.在controller类中使用配置文件中的属性值
4.编辑application.yml文件中选择test或online运行项目