XML文件的验证方式有两种:DTD和XSD
DTD(Document Type Definition)文档类型定义:
<!DOCTYPE beans PUBIIC "-//Spring//DTD BEAN 2.0//EN" "http://www.Springframework.org/dtd/Spring-beans-2.0.dtd">
dtd是xml文档的一部分用于验证元素和标签使用的是否正确
XSD(XML Schemas Definition)xml模型定义:
<beans xsi:schemaLocation="http://www.Springframework.org/schema/beans http://www.Springframework.org/schema/beans/Spring-beans.xsd">
xsd是用来指定xml文档的结构和内容的,其中schemaLocation属性由两部分组成 1.空间的名称 2.xml shema文件的位置