xmlns,命名空间.
什么都不带则表示默认命名空间为namespaceURI,xmlns:namespace-prefix="namespaceURI"
而带东西的:
这个 XML 文档携带着某个表格中的信息:
<h:table xmlns:h="http://www.w3.org/TR/html4/">
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
此 XML 文档携带着有关一件家具的信息:
<f:table xmlns:f="http://www.w3school.com.cn/furniture">
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
f和h就需要以上述方式进行定义.
同理,spring中
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001XMLSchemainstance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"default-lazy-init="true">
其中xsi为一个自定义标签,它的属性之一是schemaLocation,schemaLocation的第一个网址是命名空间,第二个是具体模板.
什么都不带则表示默认命名空间为namespaceURI,xmlns:namespace-prefix="namespaceURI"
而带东西的:
这个 XML 文档携带着某个表格中的信息:
<h:table xmlns:h="http://www.w3.org/TR/html4/">
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
此 XML 文档携带着有关一件家具的信息:
<f:table xmlns:f="http://www.w3school.com.cn/furniture">
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
f和h就需要以上述方式进行定义.
同理,spring中
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001XMLSchemainstance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"default-lazy-init="true">
其中xsi为一个自定义标签,它的属性之一是schemaLocation,schemaLocation的第一个网址是命名空间,第二个是具体模板.