①原始的注入方式:
import org.springframework.beans.factory.annotation.Value;
使用spring中的value来给对象的属性赋值。
②通过yml来进行对象的属性赋值 -->推荐使用
@ConfigurationProperties的作用:
1.将配置文件中配置的每一个属性的值,映射到这个组件中。
2.告诉springboot将本来中的所有属性和配置文件中相关的配置进行绑定。
3.参数 prefix="student" :将配置文件中的student下面的所有属性一一对应。
原文:https://www.cnblogs.com/gcdlj/p/12783274.html