springboot的@PropertySource,@ImportResource,@Bean

@PropertySource:加载指定的配置文件;

@Component 
@ConfigurationProperties(prefix = "person")
@PropertySource(value = {"classpath:person.properties"})
public class Person {
	private String name;
	private Integer age;
	private Boolean boss;
	private Date birth;
	
	private Map<String, Object> maps;
	private List<Object> list;
	private Dog dog;
	

我们把原本application.properties里面的都注释掉,并创建一个person.properties在类路径下,名字改成李四
在这里插入图片描述

@ImportResource

导入Spring的配置文件,让配置文件里面的内容生效; Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别; 想让Spring的配置文件生效,加载进来;@ImportResource标注在一个配置类上

@ImportResource(locations = {"classpath:beans.xml"}) 
//导入Spring的配置文件让其生效
@SpringBootApplication
public class Springboot02ConfigApplication {
	
	public static void main(String[] args) {
		SpringApplication.run(Springboot02ConfigApplication.class, args);
	}
}

对应的配置文件
在这里插入图片描述
SpringBoot推荐给容器中添加组件的方式;推荐使用全注解的方式
1、配置类@Configuration------>Spring配置文件
2、使用@Bean给容器中添加组件

@Configuration
public class MyAppConfig {

	@Bean
	public HelloService helloService02(){
		System.out.println("配置类@Bean给容器中添加了组件了。。。。");
		return new HelloService();
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值