applicationcontext.xml里面导入别的xml的方法<import resource="/bean.xml"/>(一)

前端之家收集整理的这篇文章主要介绍了applicationcontext.xml里面导入别的xml的方法<import resource="/bean.xml"/>(一)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

只需加入

<import resource="/bean.xml"/>

或者
<import resource="bean.xml"/>
即可

具体情况是

api说三种都可以,这三个都是相对路径

下面两个是下一层的才可以

<beans> <import resource="services.xml"/> <import resource="resources/messageSource.xml"/> <import resource="/resources/themeSource.xml"/> <bean id="bean1" class="..."/> <bean id="bean2" class="..."/> </beans>

原文链接:https://www.f2er.com/xml/299663.html

猜你在找的XML相关文章