我有这个dtd: http://fast-code.sourceforge.net/template.dtd 但是当我在xml中包含时,我得到警告: 没有为文档检测到语法约束(DTD或XML模式)。 xml是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE templates PUBLIC "//UNKNOWN/" "http://fast-code.sourceforge.net/template.dtd">

<templates>
<template type="INSTANCE_OF_CLASS">
    <description>Used to Create instance of class</description>
    <variation>asasa</variation>
    <variation-field>asasa</variation-field>
    <class-pattern>asasa</class-pattern>
    <getter-setter>setter</getter-setter>
    <allowed-file-extensions>java</allowed-file-extensions>
    <number-required-classes>1</number-required-classes>
    <allow-multiple-variation>false</allow-multiple-variation>
    <template-body>
        <![CDATA[
            // Creating new instance of ${class_name}
            final ${class_name} ${instance} = new ${class_name}();
            #foreach ($field in ${fields})
                ${instance}.${field.setter}(${field.value});
            #end
        ]]>
    </template-body>
</template>
</templates>

编辑:我改变了xml,我现在得到这个错误:

元素类型“template”的内容必须匹配“(description,variation?,variation-field?,允许 multiple-variation ?,阶级结构? getter-setter ? allowed-file-extensions吗?阈值- 类?模板体内)”。


我真的不能说为什么会出现“No grammar constraints…”警告,但是我可以在Eclipse中通过完全删除DOCTYPE声明来引起它。当我把声明放回去并再次验证时,我得到了这个错误消息:

元素类型template的内容 必须匹配 ”(描述+、变异? variation-field ?, allow-multiple-variation ?,阶级结构?,getter-setter ?, allowed-file-extensions ?,模板体内+)。

我相信这是正确的(“number-required-classes”元素是不允许的)。


这可能是由于关闭了eclipse中的验证。


这在Eclipse 3.7.1中很适用:

转到首选项窗口,然后XML -> XML文件->验证。

然后在右侧首选项面板的“验证文件”部分中,在“不指定语法”首选项的下拉框中选择“忽略”。您可能需要关闭该文件,然后重新打开它以消除警告。


在Eclipse 3.5.2中解决了此问题。两个完全相同的布局,其中一个有警告。关闭所有标签,重新打开时,警告已经消失。


您是否尝试将模式添加到xml目录?

在eclipse中,为避免“没有为文档检测到语法约束(dtd或XML模式)”,我使用XSD模式文件添加到下的XML编目

“窗口\首选项\ xml \ xml目录\用户指定的条目”。

点击右侧的“添加”按钮。


例子:

<?xml version="1.0" encoding="UTF-8"?>
<HolidayRequest xmlns="http://mycompany.com/hr/schemas">
    <Holiday>
        <StartDate>2006-07-03</StartDate>
        <EndDate>2006-07-07</EndDate>
    </Holiday>
    <Employee>
        <Number>42</Number>
        <FirstName>Arjen</FirstName>
        <LastName>Poutsma</LastName>
    </Employee>
</HolidayRequest>

从这个xml中我生成并保存了一个xsd: /home/my_user/xsd/my_xsd.xsd

As位置:/home/my_user/xsd/my_xsd.xsd

As键类型:命名空间名称

作为键:http://mycompany.com/hr/schemas


关闭并重新打开xml文件并做一些更改来违反模式,您应该会收到通知


下面是这个问题的有效解决方案:


步骤1:右键单击项目并进入属性

步骤2:转到“libraries”,删除项目的“JRE系统库”

步骤3:点击“添加库”——>“JRE系统库”——>选择“工作区默认JRE”

步骤3:转到“订购和导出”,并标记新添加的“JRE系统库”

步骤4:刷新和清理项目

尤里卡!它正在工作:)


真正的解决方案:

添加一个< !DOCTYPE >到每个有问题的XML的开头,

在XML标记<?XML版本="1.0"编码="utf-8"?>

你可以为doctype写任何东西,但基本上它应该是manifest, activity等,从我的理解


对我来说,这是一个字符编码和unix文件模式在Windows上运行eclipse的问题:

只需标记完整的代码,剪切并粘贴回来(简而言之:CtrlA-CtrlX-CtrlV),一切都很好-没有“没有语法限制…”警告


我通过指定<!来消除这个恼人的警告。DOCTYPE xml> <?xml……>标记,而不是指定其他内容(如在您的情况下的模板)。

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

一种新的干净的方法可能是这样写xml:

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE rootElement>

<rootElement>
 ....
</rootElement>

以上内容适用于Eclipse Juno+


What I found to be the solution was something very very simple that I think you should try before tinkering with the preferences. In my case I had this problem in a strings file that had as a base tag "resources" ...all I did was delete the tag from the top and the bottom, clean the project, save the file and reinsert the tag. The problem has since disappeared and never gave me any warnings. It may sound to simple to be true but hey, sometimes it's the simplest things that solve the problems. Cheers


答:

下面每个DTD部分的注释。更多信息请参考官方规范。

  <!
  DOCTYPE ----------------------------------------- correct
  templates --------------------------------------- correct  Name matches root element.
  PUBLIC ------------------------------------------ correct  Accessing external subset via URL.
  "//UNKNOWN/" ------------------------------------ invalid? Seems useless, wrong, out-of-place.
                                                             Safely replaceable by DTD URL in next line.
  "http://fast-code.sourceforge.net/template.dtd" - invalid  URL is currently broken.
  >

简单的解释:

一个非常基本的DTD看起来就像这里的第二行:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE nameOfYourRootElement>
<nameOfYourRootElement>
</nameOfYourRootElement>

详细解释:

dtd用于建立商定的数据格式并验证此类数据的接收。它们定义了XML文档的结构,包括:

法律要素清单 特殊字符 字符串 还有更多

E.g.

<!DOCTYPE nameOfYourRootElement
[
<!ELEMENT nameOfYourRootElement (nameOfChildElement1,nameOfChildElement2)>
<!ELEMENT nameOfChildElement1 (#PCDATA)>
<!ELEMENT nameOfChildElement2 (#PCDATA)>
<!ENTITY nbsp "&#xA0;"> 
<!ENTITY author "Your Author Name">
]>

Meaning of above lines... Line 1) Root element defined as "nameOfYourRootElement" Line 2) Start of element definitions Line 3) Root element children defined as "nameOfYourRootElement1" and "nameOfYourRootElement2" Line 4) Child element, which is defined as data type #PCDATA Line 5) Child element, which is defined as data type #PCDATA Line 6) Expand instances of &nbsp; to &#xA0; when document is parsed by XML parser Line 7) Expand instances of &author; to Your Author Name when document is parsed by XML parser Line 8) End of definitions


在记事本中复制您的整个代码。 临时以任何名称保存文件[在保存文件时使用"encoding" = UTF-8(或更高,但UTF)]。 关闭文件。 再打开一遍。 复制粘贴到代码中。

错误必须消失。


添加DOCTYPE标签…

在这种情况下:

<!DOCTYPE xml>

添加后:

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

So:

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

我知道这是旧的,但我通过同样的问题,并在春季文档中找到了解决方案,以下xml配置已经为我解决了这个问题。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/mvc 
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/tx 

<!-- THIS IS THE LINE THAT SOLVE MY PROBLEM -->
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 

http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

在我把上面的行建议在这个论坛的主题,我有同样的警告信息,并把这个…

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

它给了我以下警告信息…

The content of element type "template" must match "
(description,variation?,variation-field?,allow- multiple-variation?,class-
pattern?,getter-setter?,allowed-file-extensions?,number-required- 
classes?,template-body)".

因此,请尝试使用我的XML配置中的建议行。


我在xsi:noNamespaceSchemaLocation中使用了相对路径来提供本地xsd文件(因为我不能在实例xml中使用名称空间)。

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="../project/schema.xsd">
</root>

验证有效,警告被修复(没有被忽略)。

https://www.w3schools.com/xml/schema_example.asp


我在eclipse中使用web.xml文件时也遇到了同样的问题 它向我展示了这个“文档中没有引用语法约束”

但可以通过添加标签来解决 在XML标记之后,即<?xml version = "1.0" encoding = "UTF-8"?>


试着理解警告信息中给出的建议,这有时是有帮助的。

我也有同样的问题,在做了一些研究后,我找到了解决方案,并在开头添加了下面的一行

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

这就引出了我的另一个问题。 我通过阅读建议解决了这个问题,这又变成了另一个问题,这个问题已经解决了,理解了最初的原因,第一个链接被打破了(没有找到)。下面是一步一步的图片,解释了已经做了什么来完全解决这个问题。