Merge pull request #15431 from edizor/master

Update README
This commit is contained in:
Loredana Crusoveanu 2023-12-17 17:15:03 +02:00 committed by GitHub
commit b2d875e1a7
10 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,4 @@
## Relevant Articles ## Relevant Articles
- [Scoped Values in Java 20](https://www.baeldung.com/java-20-scoped-values) - [Scoped Values in Java 20](https://www.baeldung.com/java-20-scoped-values)
- [How to Read Zip Files Entries With Java](https://www.baeldung.com/java-read-zip-files) - [How to Read Zip Files Entries With Java](https://www.baeldung.com/java-read-zip-files)
- [Deserializing JSON to Java Record using Gson](https://www.baeldung.com/java-json-deserialize-record-gson)

View File

@ -7,3 +7,4 @@
- [Testing Multi-Threaded Code in Java](https://www.baeldung.com/java-testing-multithreaded) - [Testing Multi-Threaded Code in Java](https://www.baeldung.com/java-testing-multithreaded)
- [How to Check if All Runnables Are Done](https://www.baeldung.com/java-runnables-check-status) - [How to Check if All Runnables Are Done](https://www.baeldung.com/java-runnables-check-status)
- [Parallelize for Loop in Java](https://www.baeldung.com/java-for-loop-parallel) - [Parallelize for Loop in Java](https://www.baeldung.com/java-for-loop-parallel)
- [How to Effectively Unit Test CompletableFuture](https://www.baeldung.com/java-completablefuture-unit-test)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Inter-Process Communication Methods in Java](https://www.baeldung.com/java-ipc)

View File

@ -8,3 +8,5 @@
- [Modifying Objects Within Stream While Iterating](https://www.baeldung.com/java-stream-modify-objects-during-iteration) - [Modifying Objects Within Stream While Iterating](https://www.baeldung.com/java-stream-modify-objects-during-iteration)
- [Convert a Stream into a Map or Multimap in Java](https://www.baeldung.com/java-convert-stream-map-multimap) - [Convert a Stream into a Map or Multimap in Java](https://www.baeldung.com/java-convert-stream-map-multimap)
- [How to Avoid NoSuchElementException in Stream API](https://www.baeldung.com/java-streams-api-avoid-nosuchelementexception) - [How to Avoid NoSuchElementException in Stream API](https://www.baeldung.com/java-streams-api-avoid-nosuchelementexception)
- [Get Index of First Element Matching Boolean Using Java Streams](https://www.baeldung.com/java-streams-find-first-match-index)
- [Handling NullPointerException in findFirst() When the First Element Is Null](https://www.baeldung.com/java-handle-nullpointerexception-findfirst-first-null)

View File

@ -12,4 +12,5 @@ This module contains articles about the Stream API in Java.
- [Counting Matches on a Stream Filter](https://www.baeldung.com/java-stream-filter-count) - [Counting Matches on a Stream Filter](https://www.baeldung.com/java-stream-filter-count)
- [Summing Numbers with Java Streams](https://www.baeldung.com/java-stream-sum) - [Summing Numbers with Java Streams](https://www.baeldung.com/java-stream-sum)
- [How to Find All Getters Returning Null](https://www.baeldung.com/java-getters-returning-null) - [How to Find All Getters Returning Null](https://www.baeldung.com/java-getters-returning-null)
- [Skip Bytes in InputStream in Java](https://www.baeldung.com/java-inputstream-skip-bytes)
- More articles: [[next -->]](/../core-java-streams-2) - More articles: [[next -->]](/../core-java-streams-2)

View File

@ -6,3 +6,4 @@
- [Create a Mutable String in Java](https://www.baeldung.com/java-mutable-string) - [Create a Mutable String in Java](https://www.baeldung.com/java-mutable-string)
- [Check if a String Contains a Number Value in Java](https://www.baeldung.com/java-string-number-presence) - [Check if a String Contains a Number Value in Java](https://www.baeldung.com/java-string-number-presence)
- [Difference Between String isEmpty() and isBlank()](https://www.baeldung.com/java-string-isempty-vs-isblank) - [Difference Between String isEmpty() and isBlank()](https://www.baeldung.com/java-string-isempty-vs-isblank)
- [Strings Maximum Length in Java](https://www.baeldung.com/java-strings-maximum-length)

View File

@ -16,3 +16,4 @@ Listed here there are only those articles that does not fit into other core-java
- [Reuse StringBuilder for Efficiency](https://www.baeldung.com/java-reuse-stringbuilder-for-efficiency) - [Reuse StringBuilder for Efficiency](https://www.baeldung.com/java-reuse-stringbuilder-for-efficiency)
- [How to Iterate Over the String Characters in Java](https://www.baeldung.com/java-iterate-string-characters) - [How to Iterate Over the String Characters in Java](https://www.baeldung.com/java-iterate-string-characters)
- [Passing Strings by Reference in Java](https://www.baeldung.com/java-method-pass-string-reference) - [Passing Strings by Reference in Java](https://www.baeldung.com/java-method-pass-string-reference)
- [String vs StringBuffer Comparison in Java](https://www.baeldung.com/java-string-vs-stringbuffer)

View File

@ -5,3 +5,4 @@ This module contains articles about Spring Boot CRUD Operations
### Relevant Articles: ### Relevant Articles:
- [Spring Boot CRUD Application with Thymeleaf](https://www.baeldung.com/spring-boot-crud-thymeleaf) - [Spring Boot CRUD Application with Thymeleaf](https://www.baeldung.com/spring-boot-crud-thymeleaf)
- [Using a Spring Boot Application as a Dependency](https://www.baeldung.com/spring-boot-dependency) - [Using a Spring Boot Application as a Dependency](https://www.baeldung.com/spring-boot-dependency)
- [Differences Between Entities and DTOs](https://www.baeldung.com/java-entity-vs-dto)

2
spring-kafka-3/README.md Normal file
View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Spring Kafka Trusted Packages Feature](https://www.baeldung.com/spring-kafka-trusted-packages-feature)

View File

@ -9,3 +9,4 @@ This module contains articles about Mockito
- [Mock Same Method with Different Parameters](https://www.baeldung.com/java-mock-same-method-other-parameters) - [Mock Same Method with Different Parameters](https://www.baeldung.com/java-mock-same-method-other-parameters)
- [How to Mock Constructors for Unit Testing using Mockito](https://www.baeldung.com/java-mockito-constructors-unit-testing) - [How to Mock Constructors for Unit Testing using Mockito](https://www.baeldung.com/java-mockito-constructors-unit-testing)
- [Overview of Mockito MockedConstruction](https://www.baeldung.com/java-mockito-mockedconstruction) - [Overview of Mockito MockedConstruction](https://www.baeldung.com/java-mockito-mockedconstruction)
- [Verify That Lambda Expression Was Called Using Mockito](https://www.baeldung.com/java-mockito-verify-lambda-expression)