我正在关注Apache Nutch的教程。
我的conf / nutch-site.xml配置如下:
<property>
<name>http.agent.name</name>
<value>Nutch Spidah</value>
</property>
<configuration>
</configuration>
我收到了这个错误:
[致命错误] nutch-site.xml:11:2:根元素后面的文档中的标记必须格式正确。
我知道我错过了一些明显的东西。任何帮助表示赞赏。谢谢!
答案 0 :(得分:4)
您的属性必须出现在配置标记内:
<configuration>
<property>
<name>http.agent.name</name>
<value>Nutch Spidah</value>
</property>
</configuration>
请参阅此example。
答案 1 :(得分:0)
尝试在属性标记周围放置配置标记