我是靠谱客的博主 优美小猫咪,最近开发中收集的这篇文章主要介绍web.xml提示the processing instruction target matching "[xX][mM][lL]" is not allowed,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

新建maven工程时,默认引用的java版本比较老,导致web.xml中dtd版本为2.3,即properties->Project Facts->Dynamic Web Module版本为2.3,因为实际使用tomcat为8.0,所以需要将Dynamic Web Module版本改为3.0.

改正过程:

首先修改web.xml,将以下内容


替换为

<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">

    <display-name>Archetype Created Web Application</display-name>
</web-app>

由于本人有注释的习惯,只是将代码图中代码注释掉,然后拷贝上正确的代码,



导致报错The processing instruction target matching "[xX][mM][lL]" is not allowed。出现这个问题是因为xml格式不正确导致的,<?xml version="1.0" encoding="UTF-8"?>前面不要有任何其他字符,这个错误纯粹是画蛇添足导致的。

后来删除掉前面注释的内容就好了




最后

以上就是优美小猫咪为你收集整理的web.xml提示the processing instruction target matching "[xX][mM][lL]" is not allowed的全部内容,希望文章能够帮你解决web.xml提示the processing instruction target matching "[xX][mM][lL]" is not allowed所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部