欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot 自定义配置文件

程序员文章站 2022-05-01 23:27:02
...

除了application.yml ,自定义另外的配置文件,如何读取。

bus.yml:

email: [email protected]
scheduleEnable: true

定义配置文件读取类:


/**
   bus.yml 参数读取
 * @author xz
 *
 */
@Component
@PropertySource("classpath:bus.yml")
@ConfigurationProperties
public class BusinessConfig {
    private String email;
    private boolean scheduleEnable;

    public boolean isScheduleEnable() {
        return scheduleEnable;
    }
    public void setScheduleEnable(boolean scheduleEnable) {
        this.scheduleEnable = scheduleEnable;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
}

使用:

    @Autowired
    BusinessConfig busConfig;

    // 正常使用
相关标签: springboot