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 的声明前面有一个空格去掉就好了。

你可能感兴趣的:(xml The processing instruction target matching "[xX][mM][lL]" is not allowed)