Java Transient Meta FieldYes, you can add a field in a JPA entity class that is not mapped to any database column. This field type is typically used for transient…Nov 29, 2024Nov 29, 2024
Interceptors 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 21, 2024Jun 21, 2024
Interceptors vs Advice“Interceptors” and “advice” are concepts often discussed within the context of Aspect-Oriented Programming (AOP) and certain programming…Jun 21, 2024Jun 21, 2024
Javalin 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 3, 2024Jun 3, 2024
A 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
2. 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
Think in Scala: val or var?When in doubt, you should always try to use val instead of var.Nov 24, 2021Nov 24, 2021