π How does a relational database work
https://vladmihalcea.com/how-does-a-relational-database-work/
https://vladmihalcea.com/how-does-a-relational-database-work/
Vlad Mihalcea
How does a relational database work - Vlad Mihalcea
Introduction While doing my High-Performance Java Persistence training, I came to realize that itβs worth explaining how a relational database works, as otherwise, it is very difficult to grasp many transaction-related concepts like atomicity, durabilityβ¦
π Injecting Prototype Beans into a Singleton Instance in Spring
https://www.baeldung.com/spring-inject-prototype-bean-into-singleton
https://www.baeldung.com/spring-inject-prototype-bean-into-singleton
Baeldung on Kotlin
Injecting Prototype Beans into a Singleton Instance in Spring | Baeldung
Learn how to inject prototype beans into a singleton-scoped bean instance.
π Quick tip: Referencing other Properties in Spring
www.javacodegeeks.com/2020/09/quick-tip-referencing-other-properties-in-spring.html
www.javacodegeeks.com/2020/09/quick-tip-referencing-other-properties-in-spring.html
Java Code Geeks
Quick tip: Referencing other Properties in Spring | Java Code Geeks - 2020
In Spring property (or yaml) files we can reference other properties using the ${..} syntax. For example: 1 2 3 external.host=https://api.external.com
π 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.