π Mapping Collections with MapStruct
https://www.baeldung.com/java-mapstruct-mapping-collections
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-mapstruct-mapping-collections
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Mapping Collections with MapStruct | Baeldung
Explore how to map collections using MapStruct.
π Converting a Java Keystore Into PEM Format
https://www.baeldung.com/java-keystore-convert-to-pem-format
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-keystore-convert-to-pem-format
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Converting a Java Keystore Into PEM Format | Baeldung
Learn how to convert certificates and private keys from a Java KeyStore into PEM format using keytool and openssl.
π Java 8 Streams β Group By Multiple Fields with Collectors.groupingBy()
//www.javacodegeeks.com/2021/05/java-8-streams-group-by-multiple-fields-with-collectors-groupingby.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2021/05/java-8-streams-group-by-multiple-fields-with-collectors-groupingby.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Java 8 Streams β Group By Multiple Fields with Collectors.groupingBy()
Interested to learn about Collectors.groupingBy()? Check our article explaining how to group by multiple fields using Streams.
π Introduction to the Java NIO2 File API
https://www.baeldung.com/java-nio-2-file-api
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-nio-2-file-api
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Introduction to Java NIO2 File API | Baeldung
A quick and practical guide to Java NIO2 File API
π Java 8 Parallel Streams β Custom Thread Pools Examples
//www.javacodegeeks.com/2021/05/java-8-parallel-streams-custom-thread-pools-examples.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2021/05/java-8-parallel-streams-custom-thread-pools-examples.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Java 8 Parallel Streams β Custom Thread Pools Examples
Interested to learn about Thread Pools? Check our article explaining how to create custom thread pools in Java 8 for bulk data processing
π 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.