springboot之@ImportResource:导入Spring配置文件~

@ImportResource的作用是允许在Spring配置文件中导入其他的配置文件。通过使用@ImportResource注解,可以将其他配置文件中定义的Bean定义导入到当前的配置文件中,从而实现配置文件的模块化和复用。这样可以方便地将不同的配置文件进行组合,提高配置文件的可读性和管理性。

举例:

<?xml version="1.0" encoding="UTF-8"?>
<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 http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
    <bean id="MyUser1" class="com.springboot.User">
        <property name="name" value="张三"></property>
        <property name="age" value="18"></property>
    </bean>
    <bean id="MyPet1" class="com.springboot.Pet">
        <property name="name" value="小猫"></property>
    </bean>
</beans>

如下所示为我们在之前学习spring时,通过XML文件的方式进行配置bean,那么这种方法配置的bean是无法通过springboot获取到的,测试如下所示:

package com.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;

@SpringBootApplication
public class MainApplication {
    
    
    public static void main(String[] args) {
    
    
      ConfigurableApplicationContext run= SpringApplication.run(MainApplication.class,args);
      Boolean user1= (Boolean) run.containsBean("MyUser1");
      System.out.println(user1);//输出false
      Boolean pet1= (Boolean) run.containsBean("MyPet1");
      System.out.println(pet1);//输出false
    }
}

为了提高文件的可读性和管理性,我们可将二者进行组合,方法如下所示:

我们只需要在任意的一个自定义的配置类上加上如下所示注解,注解中表明XML文件的名称即可!

@ImportResource("classpath:beans.xml")

重新测试后输出均为true

猜你喜欢

转载自blog.csdn.net/m0_64365419/article/details/133555566