π Designing an AWS CDK Project with Java
https://reflectoring.io/designing-a-aws-cdk-project/
β‘οΈ @JavaLearnZone
https://reflectoring.io/designing-a-aws-cdk-project/
β‘οΈ @JavaLearnZone
reflectoring.io
Designing an AWS CDK Project with Java
With AWS CDK, we can codify our infrastructure in Java code. In this article, we're going to explore an opinionated way of designing a CDK project to make its components re-usable and easily extensible.
π A Guide to the ResourceBundle
https://www.baeldung.com/java-resourcebundle
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-resourcebundle
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
A Guide to the ResourceBundle | Baeldung
It's always challenging to maintain and extend multilingual applications. This article covers how to use the ResourceBundle to cope with the varieties that come up when you need to provide the same content to different cultures.
π Generalized Target-Type Inference in Java
https://www.baeldung.com/java-generalized-target-type-inference
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-generalized-target-type-inference
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Generalized Target-Type Inference in Java | Baeldung
Explore Java's Type Inference, that along with generics and Lambda Expression enables us to write concise Java code.
π Creating and Analyzing Thread Dumps
https://reflectoring.io/analyzing-thread-dumps/
β‘οΈ @JavaLearnZone
https://reflectoring.io/analyzing-thread-dumps/
β‘οΈ @JavaLearnZone
reflectoring.io
Creating and Analyzing Thread Dumps
A thread dump is a snapshot of the states of all the threads in an application. They are useful to identify the root cause of various problems in live applications. In this post, we will look at the contents of a thread dump, different means of generatingβ¦
π Convert a Map to an Array, List or Set in Java
https://www.baeldung.com/convert-map-values-to-array-list-set
β‘οΈ @JavaLearnZone
https://www.baeldung.com/convert-map-values-to-array-list-set
β‘οΈ @JavaLearnZone
Baeldung
Convert a Map to an Array, List or Set in Java | Baeldung
How to convert the values of a Map to an array, List or Set using plain Java.
π Spring boot data JPA β Query for nested object
//www.javacodegeeks.com/2020/09/spring-boot-data-jpa-query-for-nested-object.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/09/spring-boot-data-jpa-query-for-nested-object.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Spring boot data JPA - Query for nested object - Java Code Geeks - 2023
Nowadays spring boot and spring data are widely used frameworks. If you are building web application in java, spring boot is the first choice. If you have
π Robust Java Object Mapping With Minimal Testing Overhead Using reMap
https://reflectoring.io/autotmatic-refactoring-safe-java-mapping/
β‘οΈ @JavaLearnZone
https://reflectoring.io/autotmatic-refactoring-safe-java-mapping/
β‘οΈ @JavaLearnZone
reflectoring.io
Robust Java Object Mapping With Minimal Testing Overhead Using reMap
An intro to the reMap Java mapping library that has a focus on minimal testing overhead.
π Why String is Immutable in Java?
https://www.baeldung.com/java-string-immutable
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-string-immutable
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Why String Is Immutable in Java? | Baeldung
Explore why Strings in the Java language are immutable.
π Changing the Order in a Sum Operation Can Produce Different Results?
https://www.baeldung.com/java-floating-point-sum-order
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-floating-point-sum-order
β‘οΈ @JavaLearnZone
Baeldung
Changing the Sum Order Returns a Different Result? | Baeldung
Learn how the computers represent numbers and why changing the sum order returns a different result.
π Java Type System Interview Questions
https://www.baeldung.com/java-type-system-interview-questions
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-type-system-interview-questions
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Java Type System Interview Questions | Baeldung
A set of Java type system related interview questions
π Guide to the Volatile Keyword in Java
https://www.baeldung.com/java-volatile
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-volatile
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Guide to the Volatile Keyword in Java | Baeldung
Learn about the Java volatile keyword and its capabilities.
π A Guide to False Sharing and @Contended
https://www.baeldung.com/java-false-sharing-contended
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-false-sharing-contended
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
A Guide to False Sharing and @Contended | Baeldung
Learn how sometimes false sharing might cause counterproductive effects on the performance of multithreaded applications