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

Spring Boot 配置@PropertySource @ImportResource @Bean

程序员文章站 2022-05-02 12:09:18
...

1. @PropertySource

加载指定配置文件

@component
@PropertySource(value={"classpath:person.yml"})
@ConfigurationProperties
public class Person {
	...
}

2. @ImportResource

导入Spring配置文件,让文件内容生效
Spring Boot里面没有Spring配置文件,我们自己编写的配置文件也不能识别

@ImportSource(locations={"classpath:person.xml"})
@SpringBootApplication
public class PersonApplication {

}

3. @Bean

Spring Boot 推荐使用注解方式

@Configuration //指明是一个配置类
public class MyConfig {
	@Bean
	public Person person() {
		System.out.println("给容器中添加组件了");
		return new Person();
	}
}