使用休眠搜索按枚举字段排序

Sort by enum field with hibernate search

我的实体中有一个 ENUM 字段

@Field(store=Store.NO,index=Index.YES,analyze=Analyze.NO)
@Enumerated(EnumType.STRING)
@FieldBridge(impl = EnumBridge.class)
@SortableField
private Status status;

我想按此字段对实体进行排序。所以我在 Hibernate 搜索中创建了一个 Sort

Sort sort = qb
        .sort()
        .byDistance()
        .onField("location.location")
        .fromLatitude(sfq.getTheCenterLatitude())
        .andLongitude(sfq.getTheCenterLongitude())
        .andByField("status")
        .createSort();

(我也是按距离排序的,不过没关系)

但是,当我尝试搜索时,我看到了这个错误

ERROR [io.undertow.request] (default task-1) UT005023: Exception handling request to /api/search/: org.jboss.resteasy.spi.UnhandledException: java.lang.IllegalStateException: unexpected docvalues type NONE for field 'status' (expected=SORTED). Use UninvertingReader or index with docvalues
Caused by: java.lang.IllegalStateException: unexpected docvalues type NONE for field 'status' (expected=SORTED). Use UninvertingReader or index with docvalues.

如何在休眠搜索中按枚举字段排序?

您可能在添加后忘记重新索引 @SortableField?

通过在property.xml中设置<property name="hibernate.search.default.locking_strategy" value="none"/>解决。我不知道怎么做,但它对我有用。