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

属性赋值-@PropertySource加载外部配置文件

时间:2019-05-25 15:45:27      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:classpath   赋值   component   com   外部   zhang   filters   lse   bsp   

配置类上添加注解@PropertySource加载外部配置文件

@Configuration
@PropertySource("classpath:/person.properties")
@ComponentScan(value = "com.yyc", includeFilters ={@ComponentScan.Filter(type= FilterType.CUSTOM, classes={MyTypeFilter.class})}, useDefaultFilters = false)
public class MainConfig {

    // 可以自定义一个bean的id,否则方法名即为beanId
    @Bean("person")
    public Person person() {
        return new Person();
    }
}
    @Value("13")
    private int age;

    @Value("${name}")
    private String name;
Person{age=13, name=‘zhangsan‘}

 

属性赋值-@PropertySource加载外部配置文件

标签:classpath   赋值   component   com   外部   zhang   filters   lse   bsp   

原文地址:https://www.cnblogs.com/AyasatoMayoi/p/10922550.html

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