我已经基于Spring Data JPA和Hibernate Search创建了一个应用程序。在我的索引实体中,我创建了一个ClassBridge,它根据实体添加了一个额外的字段,但我不知道如何获得这个额外的字段。
这是我的实体:
@Indexed
@ClassBridge(name="Image_url",
impl = ImageUrlClassBridge.class)
@Entity
@Table(name="PRODUCTS")
public class ProductModel {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Integer id;
@Field(analyzer=@Analyzer(definition="ngram"))
private String name;
...
}
这是我的classBridge:
public class ImageUrlClassBridge implements FieldBridge,ParameterizedBridge {
private ProductsService productsService;
@Override
public void set(String name, Object value, Document document, LuceneOptions luceneOptions) {
ProductModel product=(ProductModel) value;
productsService=ApplicationContextProvider.getApplicationContext().getBean(ProductsService.class);
ImageModel image=productsService.findImageByProduct(product.getId());
if(!ObjectUtils.isEmpty(image)){
Logger.getAnonymousLogger().info("\nIMAGE FOUND : "+image.getId() );
Field field = new Field( name,image.getUrl(), luceneOptions.getStore(),
luceneOptions.getIndex(), luceneOptions.getTermVector() );
field.setBoost( luceneOptions.getBoost() );
document.add( field );
}
}
...
}
以下是产品型号的搜索方法:
@SuppressWarnings("unchecked")
public List<ProductModel> search(String keyword) {
FullTextEntityManager ftem = org.hibernate.search.jpa.Search.getFullTextEntityManager(entityManager);
QueryBuilder queryBuilder = ftem.getSearchFactory().buildQueryBuilder().forEntity(ProductModel.class).get();
Query query =queryBuilder.keyword().onField("name").matching(keyword).createQuery();
FullTextQuery jpaQuery =ftem.createFullTextQuery(query, ProductModel.class);
List<ProductModel> results = jpaQuery.getResultList();
return results;
}
答案 0 :(得分:2)
您使用默认名称(在set方法的name参数中传递的名称)将字段添加到文档中,因此您的字段具有您在ClassBridge注释中指定的名称(即“Image_url”)。
只需在搜索查询中使用此字段名称即可。
如果你想获取它,你必须使用投影:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:background="@drawable/border"
android:orientation="horizontal">
<ListView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:dividerHeight="0dp"
android:layout_weight="1"
android:scrollbars="vertical"
android:overScrollMode="always"
android:id="@+id/customList"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="right"
android:layout_weight="1"
android:id="@+id/txtdt"/>
</LinearLayout>
请参阅https://docs.jboss.org/hibernate/search/3.2/reference/en/html/search-query.html#projections以供参考。