Pankaj PatilHandle Cyclic Dependencies in Hibernate Entities while converting them to JSONConverting Hibernate entities to JSON can be complex due to potential cyclic dependencies, lazy-loaded collections, and the need for proper…Aug 9Aug 9
Pankaj PatilInterceptors vs Advice: Which one is ideal for generating entity audits?Generating entity audits, which typically involves logging changes to entity states (like creation, updates, and deletions), requires a…Jun 21Jun 21
Pankaj PatilInterceptors vs Advice“Interceptors” and “advice” are concepts often discussed within the context of Aspect-Oriented Programming (AOP) and certain programming…Jun 21Jun 21
Pankaj PatilJavalin VS Vert.xBoth Vert.x and Javalin are popular Java frameworks for building web applications and microservices. They each have their strengths and are…Jun 3Jun 3
Pankaj PatilA working definition of pure functionA pure function can be defined like this: The output of a pure function depends only on (a) its input parameters and (b) its internal…Jul 6, 2022Jul 6, 2022
Pankaj Patil2. The Scala EnvironmentThe Scala REPL (Read-Eval-Print-Loop) is a development tool to interpret Scala code snippets. It will be a crucial tool in learning Scala…Jan 14, 2022Jan 14, 2022
Pankaj Patil1. Hello Scala1. Why Scala? 2. Scala and the JVM 3. Scala’s key featuresJan 13, 2022Jan 13, 2022
Pankaj PatilThink in Scala: val or var?When in doubt, you should always try to use val instead of var.Nov 24, 2021Nov 24, 2021