xml The processing instruction target matching "[xX][mM][lL]" is not allowed

前端之家收集整理的这篇文章主要介绍了xml The processing instruction target matching "[xX][mM][lL]" is not allowed前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.如下配置文件在Eclipse会一直报标题上的错误

 <?xml version="1.0" encoding="UTF-8"?>

<configuration>


<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">

<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>

</appender>

<root level="debug">   

<appender-ref ref="STDOUT"/> 

</root>

</configuration>

2.解决办法

文件的第一行 xml 的声明前面有一个空格去掉就好了。

原文链接:https://www.f2er.com/xml/299271.html

猜你在找的XML相关文章