hibernate search
一。配置
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${hibernate.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-entitymanager</artifactId>
- <version>${hibernate.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-search</artifactId>
- <version>${hibernate.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-search-analyzers</artifactId>
- <version>${hibernate.version}</version>
- </dependency>
其中的hibernate.version为4.0.0.CR1。如果hibernate-core的版本过低会导致hibernate-search无法应用,所以在使用之前请谨慎考虑。
在hibernate.cfg.xml中添加如下设置
- <property name="hibernate.search.default.directory_provider">filesystem</property>
- <property name="hibernate.search.default.indexBase">/lucene/indexes</property>
第一个属性表示将使用文件系统作为为默认的目录提供者,第二个属性表示存储目录。
如果想对某个实体进行索引,那么需要在该实体上加上@Indexed注释,对于该实体的标识符上加上@DocumentId注释,并且在你想要 进行索引的属性上加上@Field(index = Index.YES, analyze = Analyze.YES, store = Store.YES)注释,其中注释中的设置根据具体需求而定,以后会讲解到这些属性的意义和作用。
二。创建索引
这里以Person为例,对其中的name属性创建索引,创建索引的代码如下:
- SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
- Session session = sessionFactory.openSession();
- FullTextSession fullTextSession = Search.getFullTextSession(session);
- fullTextSession.createIndexer(Person.class).startAndWait();
三。搜索
- SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
- Session session = sessionFactory.openSession();
- FullTextSession fullTextSession = Search.getFullTextSession(session);
- Transaction transaction = fullTextSession.beginTransaction();
- SearchFactory searchFactory = fullTextSession.getSearchFactory();
- QueryBuilder queryBuilder = searchFactory.buildQueryBuilder().forEntity(Person.class).get();
- Query query = queryBuilder.keyword().onField("name").matching("Zhong").createQuery();
- FullTextQuery fullTextQuery = fullTextSession.createFullTextQuery(query, Person.class);
- List<Person> list = fullTextQuery.list();
- transaction.commit();
- session.close();