@ImportResource()注解的使用

x33g5p2x  于2021-12-14 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(464)

@ImportResource注解用于导入Spring的配置文件,让配置文件里面的内容生效;(就是以前写的springmvc.xml、applicationContext.xml)
Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;
想让Spring的配置文件生效,加载进来;@ImportResource标注在一个配置类上。
注意!这个注解是放在主入口函数的类上,而不是测试类上

不使用@ImportResource()注解,程序根本不能对我们spring的配置文件进行加载,所以我们需要将spring配置文件加载到容器里。

  1. package com.yangzhenxu.firstspringboot;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.context.annotation.ImportResource;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. @ImportResource(locations = "classpath:applicationContext.xml")
  8. @SpringBootApplication
  9. @RestController
  10. public class FirstSpringbootApplication {
  11. public static void main(String[] args) {
  12. SpringApplication.run(FirstSpringbootApplication.class, args);
  13. }
  14. }
  1. package com.yangzhenxu.firstspringboot;
  2. import com.yangzhenxu.firstspringboot.bean.Person;
  3. import javafx.application.Application;
  4. import org.junit.jupiter.api.Test;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.boot.test.context.SpringBootTest;
  7. import org.springframework.context.ApplicationContext;
  8. @SpringBootTest
  9. class FirstSpringbootApplicationTests {
  10. @Autowired
  11. ApplicationContext applicationContext;
  12. @Test
  13. void testapplication() {
  14. Object a = applicationContext.getBean("dog1");
  15. System.out.println(a);
  16. }
  17. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  3. <bean id="dog1" class="com.yangzhenxu.firstspringboot.bean.Dog">
  4. <property name="name" value="zhangxue"/>
  5. <property name="age" value="27"/>
  6. </bean>
  7. </beans>

相关文章