gbvc 发表于 2015-9-16 04:52:59

Hibernate Search 5.4.0 正式发布

欢迎加入运维网交流群:263444886  
  Hibernate Search 5.4.0 正式发布,更新内容如下:
  ** Bug修复

  * - TypeMetadata and QueryValidator fail to recognize an>
  * - NPE on>  * - ConnectedMultiFieldsTermQueryBuilder must unwrap a NullEncodingTwoWayFieldBridge before checking for NumericFieldBridge
  * - QueryBuilder should not tokenize the null-token when searching for null
  ** 任务
  * - FSDirectoryTest is leaking file handles when run on Windows
  * - Integration tests should not hardcode the module slot
  * - Javadoc should be built by linking to the one from Hibernate ORM 5.0
  * - Upgrade to Hibernate ORM 5.0.0.Final
  * - Fix example in projection documentation
  * - Upgrade to WildFly 10.0.0.Beta2
  * - Upgrade to JGroups 3.6.4.Final
  ** 改进
  * - ScheduledCommitPolicy might open unnecessary IndexWriter instances
  更多内容请看发行说明。
  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运行的环境如下:

[*]  1、JDK或JRE 5.0以上
[*]  2、Hibernate-Search以及相应的依赖包
[*]  3、Hibernate Core 3.2.X
[*]  4、Hibernate Annotations 3.3.X
页: [1]
查看完整版本: Hibernate Search 5.4.0 正式发布