Hibernate Search 5.5.3.Final 发布了,改进日志如下: HSEARCH-1917 - Cannot index null or empty values for faceted fields HSEARCH-2082 - Documentation refers to @SortField when it should be @SortableField HSEARCH-2085 - Typo in hibernate-search-engine logger HSEARCH-2086 - Long and Date range faceting doesn’t honor hasZeroCountsIncluded HSEARCH-2179 - Hanging during shutdown of SyncWorkProcessor HSEARCH-2193 - LuceneBackendQueueTask does not release the Directory lock on update failures HSEARCH-2200 - Typo in log message HSEARCH-2240 - Parallel service lookup might fail to find the service HSEARCH-2199 - Allows the use of CharFilter in the programmatic API of SearchMapping HSEARCH-2084 - Upgrade to WildFly 10.0.0.Final HSEARCH-2089 - Ensure the performance tests do not use the WildFly embedded version of Search HSEARCH-1951 - Improve resulting error message when applying the wrong Sort Type HSEARCH-2090 - Using the wrong header in the distribution/pom.xml HSEARCH-2241 - Clarify deprecation of setFilter() method on FullTextQuery 下载地址:http://hibernate.org/search/downloads/ Hibernate Search的作用是对数据库中的数据进行检索的。它是hibernate对著名的全文检索系统Lucene的一个集成方案,作用在于对数据表中某些内容庞大的字段(如声明为text的字段)建立全文索引,这样通过hibernate search就可以对这些字段进行全文检索后获得相应的POJO,从而加快了对内容庞大字段进行模糊搜索的速度(sql语句中like匹配)。 Hibernate Search主要有以下功能特点: 1,功能强大,配置简单 - 配置只需要修改persistence.xml(JPA),hibernate.cfg.xml(Hibernate) 2,支持Hibernate,以及EJB3 JPA标准应用 3,集成全文搜索引擎Lucene - Lucene是Apache项目组下的一个功能强大的全文搜索引擎项目 4,可以简单透明索引查询过的数据 5,支持复杂检索 - 支持Wild Card(诸如*, ?等通配符号),多关键字,模糊查询,排序等 6,支持Clustering 7,支持直接访问Lucene API 8,对Lucene索引,API的高效管理 Hibernate Search 5.5.3.Final 发布下载地址