Parse error in application web.xml file atweb.xmlorg.xml.sax.SAXParseExceptionXML 文档结构必须从头至尾包含在同一个实体

报错:
org.apache.tomcat.util.descriptor.web.WebXmlParser parseWebXml
严重: Parse error in application web.xml file at [file:/C:/Users/####/apache-tomcat-8.5.42/webapps/ssmTest/WEB-INF/web.xml]
org.xml.sax.SAXParseException; systemId: file:/C:/Users/####/apache-tomcat-8.5.42/webapps/ssmTest/WEB-INF/web.xml; lineNumber: 35; columnNumber: 19; XML 文档结构必须从头至尾包含在同一个实体内。
![在这里插入图片描述](https://img-blog.csdnimg.cn/20191108133805742.png
解决办法:
打开代码对比器,左边是我写的,右边是源码,发现少了一个
结束标签,这与报错很吻合。补上结束标签,OK了
Parse error in application web.xml file atweb.xmlorg.xml.sax.SAXParseExceptionXML 文档结构必须从头至尾包含在同一个实体_第1张图片

你可能感兴趣的:(SpringMVC,SSM框架搭建)