問題描述
Eclipse 3.5.2 拋出 XML 模式警告消息:
Eclipse 3.5.2 is throwing an XML schema warning message:
No grammar constraints (DTD or XML schema) detected for the document.
application.xml 文件:
The application.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<application
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/application_5.xsd"
version="5">
</application>
我不想禁用警告.如何讓 Eclipse 正確驗證 XML 文檔?
I do not want to disable the warning. How can I get Eclipse to correctly validate the XML document?
推薦答案
不知道你是否滿意地解決了這個問題,但我今天在使用 Eclipse 3.6 中的一些 Spring 配置文件時遇到了這個帖子.無論如何,我都無法讓錯誤在 Eclipse 的問題"視圖中消失,直到我右鍵單擊該問題并將其刪除.
Not sure if you ever resolved this satisfactorily but I ran across this posting today while working with some Spring configuration files in Eclipse 3.6. I could not get the error to go away in the Problems view in Eclipse no matter what, until I right-clicked on the problem and deleted it.
我認為如果我重新驗證并且確實存在問題,它會回來,但到目前為止還沒有.問題是我有一個幾乎相同的 Spring 配置文件,但沒有顯示錯誤.
I figured it would come back if I revalidated and there was actually a problem and so far it hasn't. The thing is I had an almost identical Spring config file that wasn't showing the error.
似乎有時某些東西會卡在 Eclipse 中.不知道為什么,但是在這與文件與編輯器不同步并且不得不強制刷新之間,我想我必須接受它.
It would seem that sometimes stuff just gets stuck in Eclipse. Not sure why but between this and files getting out of sync with the editors and having to force a refresh I guess I have to accept it.
這篇關于如何修復 Eclipse 驗證錯誤“未檢測到文檔的語法約束"?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!