Tags
Authors
Welcome to the Hibernate community newsletter in which we share blog posts, forum, and StackOverflow questions that are especially relevant to our users.
In this post, I’d like you to meet Mark Paluch, who, among other projects, is one of our Hibernate OGM project contributors.
After over 60 resolved tasks, we’re proud to release Hibernate Search version 5.6.0.Beta1.
The Elasticsearch integration made significant progress, and we believe it to be ready for wider usage.
In this post, I’d like you to meet Sergey Chernolyas who is one of our Hibernate OGM project contributors.
Hibernate OGM 5 is out!
Hibernate OGM 5.0.0.Final is finally here!
Welcome to the Hibernate community newsletter in which we share blog posts, forum, and StackOverflow questions that are especially relevant to our users.
While the team has been busy implementing great new features such as the Elasticsearch integration for the next 5.6 release, some of you provided interesting feedback on our stable release.
The summary of the feedback I heard is that migrating to the new sorting requirements can be confusing, and there were some issues with our Faceting implementation.
Hibernate Search version 5.5.3.Final
is available now, fixing the reported issues and improving the error messages around sorting.
The changelog is rather small, so this time I’ll post it verbatim:
-
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
Welcome to the Hibernate community newsletter in which we share blog posts, forum, and StackOverflow questions that are especially relevant to our users.
One of the things library developers often miss in Java are property literals. In this post I’m going to show how to make creative use of Java 8 method references to emulate property literals, with the help of some byte code generation.
Akin to class literals (e.g. Customer.class
), property literals would allow to refer to the properties of a bean class in a type-safe manner.
This would be useful for designing APIs that run actions on specific bean properties or apply some means of configuration to them.
E.g. consider the API for programmatic configuration of index mappings in Hibernate Search:
[ ... ]
Welcome to the Hibernate community newsletter in which we share blog posts, forum, and StackOverflow questions that are especially relevant to our users.