- @ImportResource作用与类上,用于引入spring配置文件.xml,是为了解决applicationContext配置文件的转移到Spring Boot的遗留问题
- @ImportResource会将导入的applicationContext.xml文件中的bean注册到Spring Boot的容器中
示例
@SpringBootApplication
@ImportResource("classpath:applicationContext.xml")
public class HelloApplication {
public static void main(String[] args) {
SpringApplication.run(HelloApplication.class, args);
}
}