Hibernate bootstrapping
In this article, I will introduce you the new native bootstrapping API of Hibernate 5.
Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.
In this article, I will introduce you the new native bootstrapping API of Hibernate 5.
We have arrived at a state with Hibernate 4 where we can change the database behind the system to go for production usage (so H2 databases are out of the question). Now it is time to look at connection pooling,…
Multi-tenancy indicates an approach in software development where a single application simultaneously serves multiple clients. These clients are also called tenants. This approach is very common in Software as a Service (SaaS) solutions.
Most of the time it is OK to simply let the database do the work of concurrency control, however sometimes you can encounter an application where you need to take over. In this article I will give a brief introduction…
In this article I will give you a brief introduction to Entity auditing with Hibernate, or to be more specific with Hibernate Envers which is since some 3.x version part of the Hibernate core.
If you have a bigger application you think about performance and how you can improve it. Caching is one way to do this because it enables fewer queries going to the database. Querying the database is always a performance impact…
In this article I will give you a brief introduction to Hibernate batch processing.
After the introduction into Hibernate 4 which included mapping relationships and inheritance let’s dig a bit deeper and see how we can reach stored data in the database.
Last time I introduced annotations instead XML configuration. Now I will dig deeper and show how you can create entity relations and map them to the database. If you look at the Book entity in the example you might think:…
In the previous articles I have shown you how to get started with Hibernate 4: create entities, manage relations and inheritance and how to query the stored data. However every time I used an in-memory database which means that every…