本文主要是介绍org.apache.solr.common.SolrException undefined field text,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在collection1文件夹的solrconfig.xml文件中<str name="df">text</str>
df为solr中默认的搜索field , 那么此处定义了默认field为text,可是我的schema.xml中未定义text,那么肯定会报以上错误。
解决方法:
1.在schema.xml中定义一个字段
<field name="text" type="text_general" indexed="true" stored="false" multiValued="true"/>
2.在solrconfig.xml中的所有df中更改为schema.xml中存在的字段,如 id
这篇关于org.apache.solr.common.SolrException undefined field text的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!