码迷,mamicode.com
首页 > 其他好文 > 详细

读取配置文件

时间:2021-06-10 18:35:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ati   就是   pre   getter   todo   efi   ica   ring   span   

1、application.properties

test.name=111
test.names=‘111‘,‘bbb‘,‘ccca‘

2、配置类

/**
 * @Author jijiecong
 * @Date 2021/6/4 17:13
 * @Version 1.0
 * @Description TODO
 */
@Configuration
@ConfigurationProperties(prefix = "test")
public class LeetCodeConfig {
    
    private String name;

    private List<String> names = new ArrayList<>();


    public List<String> getNames() {
        return names;
    }

    public void setNames(List<String> names) {
        this.names = names;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

3、注意点

注解@ConfigurationProperties(prefix = "test")就是配置的前缀
name和names必须和配置里的名字一致
提供setter和getter方法。

读取配置文件

标签:ati   就是   pre   getter   todo   efi   ica   ring   span   

原文地址:https://www.cnblogs.com/jijiecong/p/14870735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!