我们正在尝试将 OpenCMS 结构化内容 XML 字段映射到 SOLR 字段,以便使用该字段作为过滤器执行搜索。
XML 字段在 XSD 文件中是这样描述的:
<xsd:complexType name="OpenCmsContrato">
<xsd:sequence>
[...]
<xsd:element name="numeroExpediente" type="OpenCmsString" minOccurs="1" maxOccurs="1" />
[...]
</xsd:sequence>
<xsd:attribute name="language" type="OpenCmsLocale" use="required"/>
</xsd:complexType>
这些是元素的搜索设置,在同一个 XSD 文件中定义:
<xsd:annotation>
<xsd:appinfo>
[...]
<searchsettings>
<searchsetting element="numeroExpediente" searchcontent="true">
<solrfield targetfield="numexp" />
</searchsetting>
</searchsettings>
[...]
</xsd:appinfo>
</xsd:annotation>
目标 SOLR 字段“numexp”在 SOLR 的 schema.xml 文件中以这种方式定义:
<fields>
<field name="numexp" type="string" indexed="true" stored="true" />
[...]
</fields>
这就是我们对 JSP 文件执行 SOLR 查询的方式:
CmsSearchManager manager = OpenCms.getSearchManager();
CmsSolrIndex index = manager.getIndexSolr("Solr Online");
String query = "fq=type:contrato";
if (!"".equals(text))
query += "&fq=numexp:" + text;
CmsSolrResultList listFiles = index.search(cmso, query);
当我们执行此代码时,我们得到 listFiles.size() = 0,但是当我们将过滤字段更改为预定义的 SOLR 字段“内容”时,这样:
if (!"".equals(text))
query += "&fq=content:" + text;
我们得到了预期的结果。
通过我们使用“content” SOLR 字段作为过滤器获得的 CmsSearchResource 对象,我们能够迭代其内部 I_CmsSearchDocument 的字段,得到以下列表作为结果:
id
contentblob
path
type
suffix
created
lastmodified
contentdate
relased
expired
res_locales
con_locales
template_prop
default-file_prop
notification-interval_prop
NavPos_prop
enable-notification_prop
locale_prop
NavText_prop
Title_prop
category
ca_excerpt
timestamp
score
link
列表中不存在“numexp”字段。为什么?我们是否缺少任何步骤?我们是否必须配置其他东西才能使映射工作?