微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在SolrIndexedProperty中将自定义项目类型列插入solr,以及如何从solr中检索数据

如何解决如何在SolrIndexedProperty中将自定义项目类型列插入solr,以及如何从solr中检索数据

在我的情况下,我有一个表,其中只有一列保存集合List数据,我列出了我将PRODUCT作为属性传递给如何将此列插入solr以及如何从solr中检索它的方法

<collectiontypes>
        <collectiontype code="topsellingproductscodes" elementtype="Product" autocreate="true" type="list"/>
    </collectiontypes>

<itemtype code="TopSoldProducts">
            <deployment table="TopSoldProducts" typecode="23677"/>
            <attributes>
                <attribute qualifier="products" type="topsellingproductscodes">
                    <persistence type="property" />
                </attribute>
            </attributes>
        </itemtype>
  1. 将此数据插入solr
  2. 如何从solr获取自定义表数据(请指定步骤)。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。