Coffee with Thorben 2020-01-29 – Soft Deletes & Bi-directional Association

Coffee with Thorben 2020-01-29 – Soft Deletes & Bi-directional Association

to not miss any video. Soft Deletes During last week’s stream, I was asked to show how to implement soft deletes with Hibernate. So, that will be the topic of this week’s stream. In addition to the stream, you might find this article useful: How to implement a soft delete with Hibernate. Question of the…

Coffee with Thorben 2020-01-22 – JSON Mappings & Polymorphic Associations

Coffee with Thorben 2020-01-22 – JSON Mappings & Polymorphic Associations

to not miss any video. JSON Mappings The mapping of associations seems easy but there are several pitfalls you should avoid. Links mentioned in the video: How to use PostgreSQL’s JSONB data type with Hibernate PostgreSQL documentation: JSON Types PostgreSQL documentation: JSON Functions and Operators If you want to learn more about advanced mappings with…

Coffee with Thorben 2020-01-15 – Association Pitfalls & Enum Mappings

Coffee with Thorben 2020-01-15 – Association Pitfalls & Enum Mappings

to not miss any video. Association Mapping Pitfalls The mapping of associations seems easy but there are several pitfalls you should avoid. Articles mentioned in the video: Ultimate Guide – Association Mappings with JPA and Hibernate Entity Mappings: Introduction to JPA FetchTypes Why you should avoid CascadeType.REMOVE for to-many associations and what to do instead…

Coffee with Thorben 2020-01-08 – DB Migration & Criteria SubQuery

Coffee with Thorben 2020-01-08 – DB Migration & Criteria SubQuery

to not miss any video. Database Migration You have various options to automate the creation and update of your database. You can use JPA’s schema generation feature or use version-based database migration tools, like Flyway and Liquibase. I explained all of them in great detail here on the blog. You can find links to all…