Aouassar Asmaealgostyle.hashnode.dev·Nov 15, 2024Spring Boot et Hibernate : Gestion des datesLes frameworks modernes comme Spring Boot et Hibernate ont le pouvoir de simplifier considérablement la gestion des applications Java, surtout lorsqu’il s’agit de tâches répétitives et fastidieuses. L’un des exemples les plus marquants de cette simpl...DiscussJava
Aouassar Asmaealgostyle.hashnode.dev·Nov 1, 2024Hibernate et DialecteHibernate est une bibliothèque Java qui permet de travailler avec une base de données de manière plus facile, sans écrire beaucoup de code SQL. Cependant, chaque base de données a ses propres règles de langage SQL. Par exemple, MySQL et PostgreSQL ...Discussdialecte
Robert Niestrojrobertniestroj.hashnode.dev·Oct 22, 2024A Guide to Logging SQL Queries in Hibernateshow-sql=true show-sql is the basic option in Hibernate to display the generated SQL Statements. It does print the statements to the console, so it is only a viable option if you analyze the output generated by Hibernate on a developer machine in an ...Discuss·847 readsJava
Tuanh.nettuanhnet.hashnode.dev·Oct 14, 2024Effective Strategies for Implementing Multi-Tenancy in Spring Boot ApplicationsSource: Effective Strategies for Implementing Multi-Tenancy in Spring Boot Applications 1. Understanding Multi-Tenancy Multi-tenancy refers to the capability of a single software application to cater to multiple tenants or user groups, each wi...DiscussSpring
Tuanh.nettuanhnet.hashnode.dev·Oct 10, 2024Methods of Transaction Propagation: Understanding the Types and Their UsesSource: Methods of Transaction Propagation: Understanding the Types and Their Uses 1. What is Transaction Propagation? Transaction propagation determines how transactions are handled across different method calls or services. It defines whethe...DiscussSpring
Robert Niestrojrobertniestroj.hashnode.dev·Sep 24, 2024How JPA works from your Java code to the DatabaseA question I like to ask developers during job interviews is how JPA works from application code down to the database. The answer tells me how someone understands this complex tech stack. As I work with the Spring Framework I ask this question in the...Discuss·9 likes·10.8K readsJava
Nikhil Soman Sahunikhilsomansahu.hashnode.dev·Sep 12, 2024How to Fix the SqlExceptionHelper Null Return in Hibernate with Spring Boot: A Step-by-Step GuideIf you’ve encountered the error message: Cannot invoke "org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(java.sql.SQLException, String)" because the return value of "org.hibernate.resource.transaction.backend.jdbc.internal.JdbcIsolationDelega...Discuss·30 readsSpringboot
Tuanh.nettuanhnet.hashnode.dev·Sep 4, 2024Bulk Insert in Spring Boot: A Comprehensive GuideSource: Bulk Insert in Spring Boot: A Comprehensive Guide 1. Introduction to Bulk Insert in Spring Boot Bulk insert refers to the process of inserting multiple records into a database in a single operation. This technique is particularly usefu...DiscussSpring
Tuanh.nettuanhnet.hashnode.dev·Aug 26, 2024Tips to Understand the Difference Between Propagation.REQUIRED and REQUIRES_NEWSource: Tips to Understand the Difference Between Propagation.REQUIRED and REQUIRES_NEW 1. What is Transaction Propagation in Spring? Before diving into the differences, it's important to understand what transaction propagation is. In Spring, ...DiscussSQL
Tuanh.nettuanhnet.hashnode.dev·Aug 25, 2024Reasons Why You Should Understand the Differences Between JPA and HibernateSource: Reasons Why You Should Understand the Differences Between JPA and Hibernate 1. Introduction to JPA and Hibernate 1.1 What is JPA? JPA is a specification, meaning it defines a set of guidelines and rules for ORM in Java. It is not ...Discussjpa