Reassigning components Via an explicit canonical/compact constructor we can reassign components. For instance, when we create a MelonRecord we provide its type (for instance, Cantaloupe) and its weight in grams
Category: Adding more artifacts in a record
Introducing the canonical and compact constructors for records – Record and record patternIntroducing the canonical and compact constructors for records – Record and record pattern
84. Introducing the canonical and compact constructors for records In the previous problem, we created the MelonRecord Java record and we instantiated it via the following code: MelonRecord melonr =
Understanding records serialization 2 – Record and record patternUnderstanding records serialization 2 – Record and record pattern
Serializing/deserialzing gacContainer (typical Java class) The gacContainer object is an instance of MelonContainer which is a plain Java class. MelonContainer gacContainer = new MelonContainer( LocalDate.now().plusDays(15), “ML9000SQA0”, new Melon(“Gac”, 5000)); After
Understanding records serialization – Record and record patternUnderstanding records serialization – Record and record pattern
89. Understanding records serialization In order to understand how Java records are serialized/deserialized, let’s have a parallel between a classical code based on plain Java classes and the same code
Invoking the canonical constructor via reflection – Record and record patternInvoking the canonical constructor via reflection – Record and record pattern
90. Invoking the canonical constructor via reflection It is not a daily task to invoke the canonical constructor of a Java record via reflection. However, this can be accomplished quite
Introducing record pattern for instanceof 2 – Record and record patternIntroducing record pattern for instanceof 2 – Record and record pattern
In record patterns, it is the compiler’s responsibility to initialize the binding variables such as name and specialty. In order to accomplish this, the compiler calls the accessors of the
Tackling records in Spring Boot – Record and record patternTackling records in Spring Boot – Record and record pattern
98. Tackling records in Spring Boot Java records fit perfectly in Spring Boot applications. Let’s have several scenarios where Java records can help us to increase readability and expressiveness by
Tackling records in JPA – Record and record patternTackling records in JPA – Record and record pattern
99. Tackling records in JPA If you are a fan of JPA (I cannot see why, but who am I to judge) then you’ll be more than happy to find
Tackling records in jOOQ – Record and record patternTackling records in jOOQ – Record and record pattern
100. Tackling records in jOOQ The more you learn JPA more you’ll love jOOQ. Why? Because jOOQ represents the best way to write SQL in Java. Flexibility, versatility, dialect agnostic,
Introducing parallel computations with arrays – Arrays, collections and data structuresIntroducing parallel computations with arrays – Arrays, collections and data structures
101. Introducing parallel computations with arrays There was a time when CPUs were capable to perform operations on data only in the traditional mode known as SISD (Single Instruction, Single