14 articles

📰 Dev.to · Yiğit Erkal

Articles from Dev.to · Yiğit Erkal · 14 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (10481) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
Spring - Circular Dependency
Dev.to · Yiğit Erkal 3y ago
Spring - Circular Dependency
Circular dependencies are the scenarios when two or more beans try to inject each other via...
Spring - Dependency Injection
Dev.to · Yiğit Erkal 3y ago
Spring - Dependency Injection
Dependency Injection is the most important feature of Spring framework. It is a design pattern where...
Hibernate - Flush
Dev.to · Yiğit Erkal 3y ago
Hibernate - Flush
One of the most confusing points about JPA/Hibernate is the flush operation and its relation to the...
Hibernate - LazyInitializationException
Dev.to · Yiğit Erkal 3y ago
Hibernate - LazyInitializationException
@Transactional annotation is used when you want the certain method/class to be executed in a...
Hibernate - N+1 Problem
Dev.to · Yiğit Erkal 3y ago
Hibernate - N+1 Problem
Let’s imagine we have two entities with a one-to-many relationship: Product and ProductEntry. For...
Hibernate - LAZY fetching
Dev.to · Yiğit Erkal 4y ago
Hibernate - LAZY fetching
I know what is LAZY in theoretically. Tell me in a real world scenario!!! Consider an...
Hibernate - vs JDBC vs JPA vs Spring Data JPA
Dev.to · Yiğit Erkal 4y ago
Hibernate - vs JDBC vs JPA vs Spring Data JPA
You have a java program on one side and the relational database on the other side. Let's check what...
Hibernate - Why you should avoid merge()
Dev.to · Yiğit Erkal 4y ago
Hibernate - Why you should avoid merge()
Before we start, if you are not familiar with the states you can first read the related post. Let's...
Hibernate - 4 Entity States
Dev.to · Yiğit Erkal 4y ago
Hibernate - 4 Entity States
What is entity? 💬❓ Entity are our domain classes corresponding to the tables in the...
Hibernate - Dirty Check
Dev.to · Yiğit Erkal 4y ago
Hibernate - Dirty Check
What is 'Dirty Check'? 🤔 Hibernate checks the entity objects that are in the 'managed'...