转载

Hibernate Search (5.10, 5.9, 5.6) bugfix 三杀,数据检索框架

Hibernate Search 为目前还在积极维护的分支发布了 bugfix 版本:

  • Version 5.10.4.Final:The latest and greatest, compatible with Hibernate ORM 5.3 and JPA 2.2.

  • Version 5.9.3.Final:Latest version compatible with Hibernate ORM 5.2 (5.2.3.Final and later 5.2.x).

  • Version 5.6.6.Final:Latest version compatible with Hibernate ORM 5.0 and 5.1.

更新内容

  • HSEARCH-3339 : Using a  @Spatial bridge on a property of a non- @Indexed , embedded type used to lead to an exception on bootstrap. It is no longer the case.

  • HSEARCH-3343 : Hibernate Search 5.10.4.Final depends on Hibernate ORM 5.3.6.Final.

  • HSEARCH-3344 : Hibernate Search 5.9.3.Final depends on Hibernate ORM 5.2.17.Final.

  • HSEARCH-3345 : Hibernate Search 5.6.6.Final depends on Hibernate ORM 5.1.15.Final.

下载地址和发布说明 http://in.relation.to/2018/09/13/hibernate-search-5-10-4-Final-5-9-3-Final-5-6-6-Final/

源码下载  https://github.com/hibernate/hibernate-search/releases

Hibernate Search 的作用是对数据库中的数据进行检索的。它是Hibernate对著名的全文检索系统 Lucene的一个集成方案,作用在于对数据表中某些内容庞大的字段(如声明为 text 的字段)建立全文索引,这样通过 Hibernate Search 就可以对这些字段进行全文检索后获得相应的 POJO,从而加快了对内容庞大字段进行模糊搜索的速度(sql 语句中 like 匹配)。

原文  https://www.oschina.net/news/99977/hibernate-search-5-10-4-5-9-3-5-6-6-released
正文到此结束
Loading...