xml: extensible markup language 可扩展标记语言
xmlns:xml name space xml名称空间
xsi: xml schema instance xml规范实例
xsd: xml schema defination 规范定义
<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/maven-v4_0_0.xsd">
xmlns="http://maven.apache.org/POM/4.0.0" --命名空间,类似包名,因为xml的标签可自定义,需要命名空间来区分
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"--xml遵循的标签规范
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 --定义xsi的地址 之 命名空间的名字
http://maven.apache.org/xsd/maven-4.0.0.xsd" --定义xsi的地址 之 地址