🆕 Creating a Custom Linked List Data Structure in Java
https://www.baeldung.com/java-custom-linked-list-implementation
https://www.baeldung.com/java-custom-linked-list-implementation
Baeldung on Kotlin
Creating a Custom Linked List Data Structure in Java | Baeldung
Learn how to implement a custom singly linked list in Java with the functionality to insert, remove, retrieve, and count elements.
🆕 How to Display the Last Two Digits of the Current Year in Java
https://www.baeldung.com/java-date-show-year-two-digits
https://www.baeldung.com/java-date-show-year-two-digits
Baeldung
How to Display the Last Two Digits of the Current Year in Java | Baeldung
Learn three methods for displaying the last two digits of the current year in Java.
🆕 How to Run Selenium Regression Tests With GitHub Actions
https://www.baeldung.com/selenium-regression-tests-github-actions
https://www.baeldung.com/selenium-regression-tests-github-actions
Baeldung on Kotlin
How to Run Selenium Regression Tests With GitHub Actions
Learn how to run Selenium regression tests with GitHub Actions.
🆕 What Is the Difference Between JDK_JAVA_OPTIONS and JAVA_TOOL_OPTIONS?
https://www.baeldung.com/java-jdk_java_options-vs-java_tool_options
https://www.baeldung.com/java-jdk_java_options-vs-java_tool_options
Baeldung on Kotlin
What Is the Difference Between JDK_JAVA_OPTIONS and JAVA_TOOL_OPTIONS? | Baeldung
Learn about how to use JDK_JAVA_OPTIONS or JAVA_TOOL_OPTIONS to provide JVM options to java commands using an environment variable.
🆕 Printing out a LinkedList Using toString()
https://www.baeldung.com/java-linkedlist-tostring-print
https://www.baeldung.com/java-linkedlist-tostring-print
Baeldung
Printing out a LinkedList Using toString() | Baeldung
Learn how to print a LinkedList using Java’s toString() method.
🆕 Why Calling super.super.method() is Not Allowed in Java
https://www.javacodegeeks.com/why-calling-super-super-method-is-not-allowed-in-java.html
https://www.javacodegeeks.com/why-calling-super-super-method-is-not-allowed-in-java.html
Java Code Geeks
Why Calling super.super.method() is Not Allowed in Java
Java super super not allowed: Learn why Java does not allow super.super and how to correctly access superclass methods in inheritance.
🆕 Building High-Performance RPC Services with gRPC and Spring Boot
https://www.javacodegeeks.com/2025/03/building-high-performance-rpc-services-with-grpc-and-spring-boot.html
https://www.javacodegeeks.com/2025/03/building-high-performance-rpc-services-with-grpc-and-spring-boot.html
Java Code Geeks
Building High-Performance RPC Services with gRPC and Spring Boot
Learn how to integrate Spring Boot gRPC integration for building high-performance RPC services. Compare gRPC with REST and WebSockets
🆕 Optimize Spring Boot Startup Time: Tips & Techniques
https://www.javacodegeeks.com/2025/03/optimize-spring-boot-startup-time-tips-techniques.html
https://www.javacodegeeks.com/2025/03/optimize-spring-boot-startup-time-tips-techniques.html
Java Code Geeks
Optimize Spring Boot Startup Time: Tips & Techniques
Learn how to reduce Spring Boot startup time using lazy initialization, AOT compilation, and other optimization techniques.
🆕 Show Year In Two Digits Format In Java Date
https://www.javacodegeeks.com/show-year-in-two-digits-format-in-java-date.html
https://www.javacodegeeks.com/show-year-in-two-digits-format-in-java-date.html
Java Code Geeks
Show Year In Two Digits Format In Java Date
Java date show year two digits: Learn how to use Java Date to display the last two digits of the year with different formatting approaches.
🆕 Creating Kafka Consumers With Reactor Kafka
https://www.javacodegeeks.com/creating-kafka-consumers-with-reactor-kafka.html
https://www.javacodegeeks.com/creating-kafka-consumers-with-reactor-kafka.html
Java Code Geeks
Creating Kafka Consumers With Reactor Kafka
Learn how to create Kafka consumers using Reactor Kafka for efficient and reactive message processing in your applications.
🆕 Read Response Body in JAX-RS Client from a POST Request
https://www.javacodegeeks.com/read-response-body-in-jax-rs-client-from-a-post-request.html
https://www.javacodegeeks.com/read-response-body-in-jax-rs-client-from-a-post-request.html
Java Code Geeks
Read Response Body in JAX-RS Client from a POST Request - Java Code Geeks
Learn how to use JAX-RS Client to send a POST request and read the response body efficiently in JSON and Java objects.
🆕 How to Convert Nested Loops to Stream in Java
https://www.baeldung.com/java-nested-loops-stream-conversion
https://www.baeldung.com/java-nested-loops-stream-conversion
Baeldung on Kotlin
How to Convert Nested Loops to Stream in Java | Baeldung
We can use Java Streams to replace nested loops when we need a more declarative, readable, and efficient way to process data
🆕 How to Map a Source Object to the Target List Using MapStruct?
https://www.baeldung.com/mapstruct-map-source-object-target-list
https://www.baeldung.com/mapstruct-map-source-object-target-list
Baeldung on Kotlin
How to Map a Source Object to the Target List Using MapStruct? | Baeldung
Learn how to populate a List in a target object from specific attributes of a source object.