SpringBoot的自定义配置方法一,通过自定义配置文件

自定义配置的目的:通过自定义属性,注入到程序中使用,可以灵活的更改配置信息,修改自定义属性值,达到修改程序的目的。

一、新建一个SpringBoot工程,目录结构如下:

SpringBoot的自定义配置方法一,通过自定义配置文件

  其中MyConfig.java文件内容为:@Component与@ConfigurationProperties(prefix="winson")注解的使用

package cn.com.winson.springboot.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; /** * 自定义配置类 * * @date 2018年12月7日 * @time 下午8:05:43 */ /*@Component注解:通过此注解,该类成为Spring的bean,方便注入到其它类中使用*/ /*@ConfigurationProperties注解:声明此类为一个自定义配置属性类,prefix为属性的前缀*/ @Component @ConfigurationProperties(prefix="winson") public class MyConfig { private Integer age; private String name; public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzxzpx.html