1

我刚刚使用 hibernate-search-4.1.1.Final.jar 和所有运行时依赖项创建了一个休眠全文搜索。此应用程序中没有错误。但是我的 Lucene 查询取消了查询 DSL 并没有返回任何结果。我的意思是不返回表中的任何行。谁能帮帮我吗。

主搜索程序 此 Java 代码用于执行休眠全文搜索。

   public class MainSearch {
                public static void main(String args[]) {
            Iterator iterator;
            Session session = HibernateUtil.getSession();
            // FullTextSession fullTextSession = Search.getFullTextSession(session);

            FullTextSession fullTextSession = Search.getFullTextSession(session);
            org.hibernate.Transaction tx = fullTextSession.beginTransaction();

            // create native Lucene query unsing the query DSL
            // alternatively you can write the Lucene query using the Lucene query
            // parser
            // or the Lucene programmatic API. The Hibernate Search DSL is
            // recommended though
            QueryBuilder qb = fullTextSession.getSearchFactory()
                    .buildQueryBuilder().forEntity(Book.class).get();
            org.apache.lucene.search.Query query = qb.keyword()
                    .onFields("title", "subtitle", "authors.name").matching("cpp")
                    .createQuery();

            // wrap Lucene query in a org.hibernate.Query
            org.hibernate.Query hibQuery = fullTextSession.createFullTextQuery(
                    query, Book.class);

            // execute search

            List result = hibQuery.list();
            iterator = result.iterator();
            while (iterator.hasNext()) {
                System.out.print(iterator.next() + " ");
            }
            System.out.println();
            // Check list empty or not
            if (result.isEmpty()) {
                System.out.println("Linked list is empty");
            }

            tx.commit();
            session.close();
        }
    }
4

1 回答 1

2

您没有在数据库中包含任何内容(在您的代码中)。如果您在代码之外进行了操作,则需要先对数据库进行索引,然后才能进行搜索。为此,请执行以下操作:

FullTextSession fullTextSession = Search.getFullTextSession(session);
fullTextSession.createIndexer().startAndWait();

而且您不需要开放交易来搜索内容,因此您可以删除该org.hibernate.Transaction tx = fullTextSession.beginTransaction();行(并将其替换为startAndWait()上面的行)

参考:http ://hibernate.org/search/documentation/getting-started/#indexing (因为 Lucene 不了解您的 DBMS,反之亦然,Hibernate Search 是它们之间的链接,索引您的数据是它的原因可通过 Lucene 搜索)

于 2014-09-21T11:24:06.077 回答