Shai AlmogforTalk to the Ducktalktotheduck.hashnode.net·Jun 16, 2022Spring Boot Performance Workshop with Vlad MihalceaA couple of weeks ago, we had a great time hosting the workshop you can see below with Vlad Mihalcea. It was loads of fun and I hope to do this again soon! In this workshop we focused on Spring Boot performance but most importantly on Hibernate perfo...Discuss·20 likes·193 readshibernate
Anas Bin SohailforAnas Bin Sohailanasbinsohail.hashnode.net·Apr 12, 2021Dependency Injection in Java Spring FrameworkThinking how you could use dependency injection in Java Spring Framework? There are commonly three types of dependency injection in Spring Framework Reference Injection Setter Injection Constructor Injection We are going to discuss about the "Ref...Discuss·14 likes·623 readsJava
DoyinSoft TechnologiesforDoyinSoft Technologies Blogmadeskilz.hashnode.net·Nov 4, 2020Hibernate Query Language - HQLHibernate - Query Language Hibernate Query Language (HQL) is an object-oriented query language, similar to SQL, but instead of operating on tables and columns, HQL works with persistent objects and their properties. HQL queries are translated by Hibe...Discuss·13 likes·217 readshibernate
Siegfried Stumpferforsiegfriedstumpfer.hashnode.net·Apr 18, 2023Hibernate - Issues when your entity is your modelEven if we all know that we should have a model layer that is not your entity many small-scale projects do not follow this rule. Recently we had a long fight with a bug due to using our entity as a model. Below is a sample entity with the same relati...Discusshibernate
Pranay Gaikwadforpranayblog.hashnode.net·Apr 4, 2023Hibernate - Cache ExpirationOverview of caching in Hibernate: Caching in Hibernate means storing and reusing frequently used data to speed up your application. There are two kinds of caching: Session-level and SessionFactory-level. Level 1 cache is a cache that stores objects...DiscussSpring-HibernateSpring framework
Pranay Gaikwadforpranayblog.hashnode.net·Apr 3, 2023Hibernate - Cache Eviction with ExampleOverview of caching in Hibernate: Caching in Hibernate means storing and reusing frequently used data to speed up your application. There are two kinds of caching: Session-level and SessionFactory-level. Level 1 cache is a cache that stores objects...DiscussSpringboot
Pranay Gaikwadforpranayblog.hashnode.net·Apr 2, 2023How to Enabling & Implementing First and Second Level Cache with Hibernate?overview of Hibernate and caching: If you're a Java developer, you've probably heard of Hibernate. It's a free, open-source ORM framework that lets you map your Java objects to tables in a relational database. Basically, it makes database programmin...DiscussSpringboot
Pranay Gaikwadforpranayblog.hashnode.net·Mar 31, 2023Hibernate – Different Cascade TypesWhat is Cascading in Hibernate: Cascading is a feature in Hibernate, which is an object-relational mapping (ORM) tool used in Java to map Java classes to database tables. Cascading refers to the ability to automatically propagate the state of an ent...DiscussSpringboot
Pranay Gaikwadforpranayblog.hashnode.net·Mar 29, 2023Hibernate – PaginationIntroduction: Pagination is the process of dividing a large set of data into smaller, more manageable chunks or pages for easier navigation and faster loading times. It is a common technique used in web applications to display a large amount of data...DiscussSpringboot
Pranay Gaikwadforpranayblog.hashnode.net·Mar 28, 2023Hibernate – Save Image and Other Types of Values to DatabaseOverview In Hibernate, you can save images and other types of values as attributes of your entity classes using appropriate data types and mappings. To save images, you can use the @Lob annotation with a data type of byte[] or Blob to indicate that...Discuss·31 readshibernate
Souvik DasforDev Bytessouvikdas.hashnode.net·Feb 26, 2023How to implement one-to-one mapping in Spring Boot?Introduction In this tutorial, we are going to implement one-to-one mapping between objects in Java and use Spring Data JPA to automatically implement the mapping in a relational database (MySQL). If you are learning Spring Boot then it is very impor...Discuss·1 like·28 readsJava
vinayak kajagarforvinayakk.hashnode.net·Jan 31, 2023Introduction to HibernateHibernate is a framework that helps to communicate with the database. It's also called an 'ORM' tool. What is ORM? ORM stands for Object Relational Mapping, where java objects are mapped with database tables, syncing one row with one record of java o...Discuss·40 readsWeMakeDevs
Omotoso DanielforAyodejiayodeji.hashnode.net·Jan 30, 2023SQL Inheritance Using HibernateIntroduction The relational database stores its data in rows and columns. This data structure is not easily mapped to the Object-oriented format. For example, data in the format of Rows and Columns cannot be easily thought of in terms of inheritance....Discuss·1 like·47 readshibernate