码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot之加载自定义配置文件

时间:2019-01-07 21:11:29      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:source   app   nbsp   model   .data   not   autowired   out   int   

SpringBoot默认加载配置文件名为:application.properties和application.yml,如果需要使用自定义的配置文件,则通过@PropertySource注解指定。

 

JavaBean:

package org.springboot.model;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;


@Component
@ConfigurationProperties(prefix = "pet")
@Data
// 自定义配置文件路径
@PropertySource(value = {"classpath:config/pet.properties"})
public class Pet {
    private String name;
    private String type;
}

 

pet.properties(./resources/config/pet.properties)

pet.name=haha
pet.type=dog

 

测试代码:

package org.springboot;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springboot.model.Pet;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {
    @Autowired
    Pet pet;

    // 指定其他配置文件
    @Test
    public void testPet() {
        System.out.println(pet);
    }

}

 

执行结果:

Pet(name=haha, type=dog)

 

SpringBoot之加载自定义配置文件

标签:source   app   nbsp   model   .data   not   autowired   out   int   

原文地址:https://www.cnblogs.com/gongxr/p/10234877.html

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