xml中头文件的含义

例如:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

web-app是web.xml的根节点标签名

version是版本的意思

xmlns是web.xml文件用到的命名空间(namespace)

xmlns:xsi,xsi全名:xml schema instance,是指web.xml遵守xml规范

xsi:schemaLocation是指具体用到的schema资源

猜你喜欢

转载自blog.csdn.net/qq_39385118/article/details/80501740