π Hibernate Tip: How does Hibernateβs native ID generator work
https://thorben-janssen.com/hibernate-tip-hibernate-native-id-generator/
https://thorben-janssen.com/hibernate-tip-hibernate-native-id-generator/
Thorben Janssen
Hibernate Tip: How does Hibernate's native ID generator work
Hibernate's native ID generator and the GenerationType.IDENTITY seem to do the same thing. Which one should you use?
π High-Performance Java Persistence Newsletter, Issue 18
https://vladmihalcea.com/high-performance-java-persistence-newsletter-18/
https://vladmihalcea.com/high-performance-java-persistence-newsletter-18/
Vlad Mihalcea
High-Performance Java Persistence Newsletter, Issue 18 - Vlad Mihalcea
The High-Performance Java Persistence Newsletter features articles, videos, and answers to common StackOverflow questions.
π Configuring a Hikari Connection Pool with Spring Boot
https://www.baeldung.com/spring-boot-hikari
https://www.baeldung.com/spring-boot-hikari
Baeldung on Kotlin
Configuring a Hikari Connection Pool with Spring Boot | Baeldung
Learn how you can configure Hikari CP in your Spring Boot (1 and 2) applications
π How to improve statement caching efficiency with IN clause parameter padding
https://vladmihalcea.com/improve-statement-caching-efficiency-in-clause-parameter-padding/
https://vladmihalcea.com/improve-statement-caching-efficiency-in-clause-parameter-padding/
Vlad Mihalcea
How to improve statement caching efficiency with IN clause parameter padding - Vlad Mihalcea
Learn how to improve Statement Caching efficiency by using SQL IN clause parameter padding which reduces the number of possible IN clause combinations.
π Sentry CTO David Cramer on Automated Error Capture and Analysis
https://spring.io/blog/2020/09/24/sentry-cto-david-cramer-on-automated-error-capture-and-analysis
https://spring.io/blog/2020/09/24/sentry-cto-david-cramer-on-automated-error-capture-and-analysis
spring.io
Sentry CTO David Cramer on Automated Error Capture and Analysis
<p>Hi, Spring fans! In this episode <a href="http://twitter.com/starbuxman">Josh Long (@starbuxman)</a> talks about the wide world of web development with CSS, Figma, AdobeXD and more, and then talks to Sentry CTO <a href="https://twitter.com/zeeg">Davidβ¦
π 11 JPA and Hibernate query hints every developer should know
https://thorben-janssen.com/11-jpa-hibernate-query-hints-every-developer-know/
https://thorben-janssen.com/11-jpa-hibernate-query-hints-every-developer-know/
Thorben Janssen
11 JPA and Hibernate query hints every developer should know
Learn about all the query hints supported by JPA and Hibernate, which you can use to optimize the execution of your query.
π Using the Optimal Query Approach and Projection for JPA and Hibernate
https://thorben-janssen.com/optimal-query-and-projection-jpa-hibernate/
https://thorben-janssen.com/optimal-query-and-projection-jpa-hibernate/
Thorben Janssen
Using the Optimal Query Approach and Projection for JPA and Hibernate
How should you define your query with JPA and Hibernate and which projection should you use? Picking the best one is easier than it seems.
Spring Boot Framework pinned Β«π Java Weekly, Issue 352 https://www.baeldung.com/java-weekly-352Β»
π Hibernate Tips: How to initialize lazy relationships within a query
https://thorben-janssen.com/hibernate-tips-initialize-lazy-relationships-within-query/
https://thorben-janssen.com/hibernate-tips-initialize-lazy-relationships-within-query/
Thorben Janssen
Hibernate Tips: How to initialize lazy relationships within a query
In this week's Hibernate Tip, I show you how to initialize a lazy relationship within a query to avoid LazyInitializationExceptions.
π How to customize an entity association JOIN ON clause with Hibernate @JoinFormula
https://vladmihalcea.com/how-to-customize-an-entity-association-join-on-clause-with-hibernate-joinformula/
https://vladmihalcea.com/how-to-customize-an-entity-association-join-on-clause-with-hibernate-joinformula/
Vlad Mihalcea
How to customize an entity association JOIN ON clause with Hibernate @JoinFormula - Vlad Mihalcea
Introduction As I explained in this previous article, you can map calculated properties using Hibernate @Formula, and the value is generated at query time. In this post, youβll see how you can use a custom SQL fragment to customize the JOIN relationship betweenβ¦
π How does a JPA Proxy work and how to unproxy it with Hibernate
https://vladmihalcea.com/how-does-a-jpa-proxy-work-and-how-to-unproxy-it-with-hibernate/
https://vladmihalcea.com/how-does-a-jpa-proxy-work-and-how-to-unproxy-it-with-hibernate/
Vlad Mihalcea
How does a JPA Proxy work and how to unproxy it with Hibernate - Vlad Mihalcea
Learn how JPA and Hibernate Proxy objects work, and how you can unproxy an entity Proxy to get access to the underlying POJO instance.
π How to cache non-existing entity fetch results with JPA and Hibernate
https://vladmihalcea.com/jpa-hibernate-cache-non-existing-entity-fetch-results/
https://vladmihalcea.com/jpa-hibernate-cache-non-existing-entity-fetch-results/
Vlad Mihalcea
How to cache non-existing entity fetch results with JPA and Hibernate - Vlad Mihalcea
In this article, you will learn how to cache non-existing entity fetch results when using JPA and Hibernate to speed up subsequence calls.
π Tool-based Database Refactoring: Flyway vs. Liquibase
https://reflectoring.io/database-refactoring-flyway-vs-liquibase/
https://reflectoring.io/database-refactoring-flyway-vs-liquibase/
reflectoring.io
Tool-based Database Refactoring: Flyway vs. Liquibase
A comparison of Flyway and Liquibase - the two most popular tools for database refactoring.