當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringBoot底层注解-@ImportResource导入Spring配置文件
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot底层注解-@ImportResource导入Spring配置文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
======================beans.xml=========================
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"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="haha" class="com.leon.boot.bean.User"><property name="name" value="zhangsan"></property><property name="age" value="18"></property></bean><bean id="hehe" class="com.leon.boot.bean.Pet"><property name="name" value="tomcat"></property></bean>
</beans>
@ImportResource("classpath:beans.xml")
public class MyConfig {}======================測試=================boolean haha = run.containsBean("haha");boolean hehe = run.containsBean("hehe");System.out.println("haha:"+haha);//trueSystem.out.println("hehe:"+hehe);//true
總結
以上是生活随笔為你收集整理的SpringBoot底层注解-@ImportResource导入Spring配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SpringBoot-@Conditio
- 下一篇: SpringBoot底层注解-@Conf