如何解决XML文件中的警告提示“No grammar constraints (DTD or XML Schema) referenced in the document.”
Posted vincent_duan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决XML文件中的警告提示“No grammar constraints (DTD or XML Schema) referenced in the document.”相关的知识,希望对你有一定的参考价值。
解决方法:加上 <!DOCTYPE xml>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<ROOT>
<goods>
<isin>SN100001</isin>
<quantity>1100</quantity>
<price>200.20</price>
<customer>张三</customer>
</goods>
</ROOT>
以上是关于如何解决XML文件中的警告提示“No grammar constraints (DTD or XML Schema) referenced in the document.”的主要内容,如果未能解决你的问题,请参考以下文章
请教高手,使用IDEA做项目时mapper.xml中的sql语句问题提示:no data sources are configured ...