2

我正在关注 Apache Nutch 的教程。

我的 conf/nutch-site.xml 配置如下:

<property>
 <name>http.agent.name</name>
 <value>Nutch Spidah</value>
</property>

<configuration>

</configuration>

我收到此错误:

[致命错误] nutch-site.xml:11:2:文档中根元素之后的标记必须格式正确。

我知道我遗漏了一些明显的东西。任何帮助表示赞赏。谢谢!

4

2 回答 2

4

您的属性必须出现在配置标签内:

<configuration>
   <property>
      <name>http.agent.name</name>
      <value>Nutch Spidah</value>
   </property>
</configuration>

请参阅此示例

于 2012-10-22T21:18:00.510 回答
0

尝试将配置标签放在属性标签周围

于 2012-10-22T21:18:35.910 回答