0

我正在开发一个 Spring 3.2 webapp。我希望有人无法帮助我解决这个问题。

我尝试在“站点”数据库表的“名称”字段中获取所有带有“测试”字样的站点。

站点表行:

id:1 名称:“测试” ...

站点类

@Entity
@Indexed
@Spatial
@Table(name = "site")
public class Site implements Serializable {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    @Column(name = "id")
    private int id;
    @NotNull
    @Field(index = Index.YES, analyze = Analyze.YES, store = Store.NO)
    private String name;

...
}

DAO 类

@Override
public List<Site> getSite(String word) {

    //word = "test" at this point on debug.

    QueryBuilder builder = Search.getFullTextSession(this.getCurrentSession()).getSearchFactory()
            .buildQueryBuilder().forEntity(Site.class).get();

    org.apache.lucene.search.Query luceneQuery = builder.keyword().onField("name").matching(word).createQuery();

    org.hibernate.Query hibQuery = Search.getFullTextSession(this.getCurrentSession()).createFullTextQuery(luceneQuery, Site.class);

    return hibQuery.list();
}

getCurrentSession() 是 SessionFactory Spring bean 返回的 Session。

问题是这个方法总是返回空列表。

4

1 回答 1

1

问题解决了,我必须在 lucene 查询之前调用 createIndexer().startAndWait()。

http://docs.jboss.org/hibernate/search/4.4/reference/en-US/html_single/#d0e396

于 2013-11-04T15:12:49.150 回答