springbean配置xml

springbean配置xml,spring,configuration-files,Spring,Configuration Files,在SpringConfigXML中我们有标记,在该标记中我们有xmlns、xsi等。。 所有这些细节意味着什么?这些细节何时以及如何重要 <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 h

在SpringConfigXML中我们有标记,在该标记中我们有xmlns、xsi等。。 所有这些细节意味着什么?这些细节何时以及如何重要

<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-2.5.xsd">   
</beans>

谢谢,

您可以在这里找到xsi:schema用法的好答案


本spring文档将帮助您详细了解spring配置

可能重复:您通过给定链接找到解决方案了吗?