🆕 How to Set JVM Arguments in IntelliJ IDEA?
https://www.baeldung.com/intellij-idea-set-jvm-arguments
https://www.baeldung.com/intellij-idea-set-jvm-arguments
Baeldung
How to Set JVM Arguments in IntelliJ IDEA? | Baeldung
IntelliJ allows us to configure the JVM it uses for development and debugging. We look at how to set these configurations and how to share them with the team.
🆕 Difference Between Optional.of() and Optional.ofNullable() in Java
https://www.baeldung.com/java-optional-of-vs-optional-ofnullable
https://www.baeldung.com/java-optional-of-vs-optional-ofnullable
Baeldung
Difference Between Optional.of() and Optional.ofNullable() in Java | Baeldung
Discover the differences between Optional.of() and Optional.ofNullabe() in Java.
🆕 Check if Two Strings Are Permutations of Each Other in Java
https://www.baeldung.com/java-check-permutations-two-strings
https://www.baeldung.com/java-check-permutations-two-strings
Baeldung
Check if Two Strings Are Permutations of Each Other in Java | Baeldung
Explore some algorithms for checking whether a string is a permutation of another string.
🆕 Convert an Optional to an ArrayList in Java
https://www.baeldung.com/java-optional-arraylist-conversion
https://www.baeldung.com/java-optional-arraylist-conversion
Baeldung
Convert an Optional to an ArrayList in Java | Baeldung
Explore various approaches to converting Optional to ArrayList.
🆕 Avoiding the IndexOutOfBoundsException When Using List.subList() in Java
https://www.baeldung.com/java-list-sublist-indexoutofboundsexception
https://www.baeldung.com/java-list-sublist-indexoutofboundsexception
Baeldung
Avoiding the IndexOutOfBoundsException When Using List.subList() in Java | Baeldung
In Java, subList() creates a sub-list from a larger list, but it can throw an exception if you give it invalid starting or ending positions. Learn how to avoid this error.
🆕 Finding the Second Smallest Integer in an Array in Java
https://www.baeldung.com/java-array-second-smallest-integer
https://www.baeldung.com/java-array-second-smallest-integer
Baeldung
Finding the Second Smallest Integer in an Array in Java | Baeldung
Explore a few approaches to finding the second smallest number in an array.
🆕 Supply Enum Value to an Annotation From a Constant in Java
https://www.baeldung.com/java-enum-annotation-constant
https://www.baeldung.com/java-enum-annotation-constant
Baeldung
Supply Enum Value to an Annotation From a Constant in Java | Baeldung
Learn about Java's limitations in supplying an enum value from a constant to an annotation and explored our alternatives.
🆕 How to Convert Between ZonedDateTime and Date in Java
https://www.baeldung.com/java-zoneddatetime-date-conversion
https://www.baeldung.com/java-zoneddatetime-date-conversion
Baeldung
How to Convert Between ZonedDateTime and Date in Java | Baeldung
Learn how to convert between ZonedDateTime and Date in Java.
🆕 Difference Between Iterator.forEachRemaining() and Iterable.forEach()
https://www.baeldung.com/java-iterator-foreachremaining-vs-iterable-foreach
https://www.baeldung.com/java-iterator-foreachremaining-vs-iterable-foreach
Baeldung
Difference Between Iterator.forEachRemaining() and Iterable.forEach() | Baeldung
Explore Iterator.forEachRemaining() and Iterable.forEach() to iterate over elements in a collection.
🆕 Capture Method Arguments in Mockito Test
https://www.javacodegeeks.com/capture-method-arguments-in-mockito-test.html
https://www.javacodegeeks.com/capture-method-arguments-in-mockito-test.html
Java Code Geeks
Capture Method Arguments in Mockito Test - Java Code Geeks
Mockito captures passed parameters: Capturing method parameters for precise test validation, ensuring robust code quality effortlessly.
🆕 Retrieving Lists of Entities from a Database Using Hibernate
https://www.javacodegeeks.com/retrieving-lists-of-entities-from-a-database-using-hibernate.html
https://www.javacodegeeks.com/retrieving-lists-of-entities-from-a-database-using-hibernate.html
Java Code Geeks
Retrieving Lists of Entities from a Database Using Hibernate - Java Code Geeks
Discover Java Hibernate techniques to fetch an entity list using HQL, Criteria API, and Native SQL. Comprehensive examples provided.
🆕 Mastering Java’s Executor Framework
https://www.javacodegeeks.com/2024/05/mastering-javas-executor-framework.html
https://www.javacodegeeks.com/2024/05/mastering-javas-executor-framework.html
Java Code Geeks
Mastering Java's Executor Framework - Java Code Geeks
Tame complex tasks in Java applications! This guide unlocks the power of the Java Executor Framework for asynchronous programming.