Tags
Authors
Hibernate ORM, IntelliJ IDEA and Mac OS X have been a pretty tough combination to work with since our move to Gradle. It’s not exactly anyone’s fault but the combination of
-
gradle / IntelliJ integration
-
JDK 6 running IntelliJ IDEA
-
Hibernate ORM advanced use of Gradle and of custom plugins
made for a long and painful journey.
These days are over. Steve found the last blocking issue and you can now import Hibernate ORM natively in IntelliJ IDEA.
Today let’s discuss the interaction between multitenancy and the current session feature.
Multitenancy let’s you isolate Session
operations between different tenants.
This is useful to create a single application isolating different customers from one another.
The current session feature returns the same session for a given context, typically a (JTA) transaction. This facilitates the one session per view/transaction/conversation pattern and avoids the one session per operation anti-pattern.
[ ... ]
When creating a bug report for any project within the Hibernate family, it’s extremely helpful (and, frankly, required) to have an adequate test case available. This is obviously important to make reproducing the issue as easy as possible. But it’s also vital longer-term. Nearly every bug fix should include a regression test, which is frequently based on the original reproducer (sometimes, it’s the reproducer, verbatim).
To help create useful test cases, we’re opening up a repo with various templates. Please see the READMEs in each project’s subdir for more info: Hibernate Test Case Templates
As a starting point, the repo contains two templates for ORM:
For those of you using Hibernate ORM version 5.0.0.CR1, you can now use the freshly released Hibernate Search 5.4 version 5.4.0.Alpha1.
The Hibernate team is proud to announce the first candidate release for 5.0. The main changes since the Beta2 release include:
The primary reason for this release is to add support for running Hibernate ORM with Infinispan 7.2.1.Final as a runtime dependency. Hibernate still uses Infinispan 6.0.0.Final by default.
I have just finished releasing Hibernate O/RM 5.0.0.Beta2. Beyond Beta1, this release adds:
4.3.9.Final and 4.2.19.Final were released 15/Apr/2015.
We just got done releasing Hibernate O/RM 5.0.0.Beta1. I will follow up later with a more in depth blog post for 5.0.0.Final, but this first Beta implements all new APIs and most new features. Specifically in this Beta include: