Hibernate with PostgreSQL – 6 things you need to know
| |

Hibernate with PostgreSQL – 6 things you need to know

PostgreSQL is one of the most popular relational databases, and Hibernate is probably the most popular JPA implementation. So, it’s no surprise that they’re often used together and that you don’t have to expect any major issues doing that. But as so often, there is a difference between “it works” and “it works great”. Out…

Hibernate Tips: How to exclude unchanged columns from generated update statements

Hibernate Tips: How to exclude unchanged columns from generated update statements

Hibernate Tips is a series of posts in which I describe a quick and easy solution for common Hibernate questions. If you have a question you like me to answer, please leave a comment below. Question: Hibernate always updates all database columns mapped by my entity, even the ones that I didn’t change. How can…