spring boot @propertySource @importResource @Bean [六]
2021-01-19 17:13
标签:兼容 classpath run nta sys png static schema utf-8 指定property的配置源。 创建一个person.property: 然后修改person注解; 在运行test之后,结果为: 这个importResource是用来兼容spring的。 HelloService: beans.xml: 然后注入: 测试: 结果: 然后再spring boot 有新的方式去注入服务: 添加一个配置文件: 然后就会自动注入这个HelloService 服务。 spring boot @propertySource @importResource @Bean [六] 标签:兼容 classpath run nta sys png static schema utf-8 原文地址:https://www.cnblogs.com/aoximin/p/12906912.html@propertySource
@importResource
package com.axm.demo.service;
public class HelloService {
public HelloService(){
}
}
@SpringBootApplication
@ImportResource(locations = {"classpath:beans.xml"}) //关键
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
@Test
void contextLoads() {
boolean has=ioc.containsBean("helloService");
System.out.println(has);
}
@Configuration
public class MyApplication {
@Bean
public HelloService helloService(){
return new HelloService();
}
}
文章标题:spring boot @propertySource @importResource @Bean [六]
文章链接:http://soscw.com/index.php/essay/44150.html