对于以下XML片段:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
什么的xmlns,xmlns:xsi和xsi:schemaLocation属性究竟是什么意思?它们有什么关系?有什么:用
并且在网址中有2个网址 xsi:schemaLocation=
http://maven.apache.org/POM/4.0.0 (碰巧是相同的,xmlns但是访问时会出现404错误。)
http://maven.apache.org/xsd/maven-4.0.0.xsd (这是实际的XSD文档)
如果不存在1,为什么还要放在那里?
阿晨1998