Merge pull request #13842 from edizor/master

Update README
This commit is contained in:
Loredana Crusoveanu 2023-04-18 13:31:26 +03:00 committed by GitHub
commit b01a849724
7 changed files with 8 additions and 1 deletions

View File

@ -11,4 +11,5 @@ This module contains articles about Java 8 core features
- [Convert Between Byte Array and UUID in Java](https://www.baeldung.com/java-byte-array-to-uuid)
- [Create a Simple “Rock-Paper-Scissors” Game in Java](https://www.baeldung.com/java-rock-paper-scissors)
- [VarArgs vs Array Input Parameters in Java](https://www.baeldung.com/varargs-vs-array)
- [Java Helper vs. Utility Classes](https://www.baeldung.com/java-helper-vs-utility-classes)
- [[<-- Prev]](/core-java-modules/core-java-8)

View File

@ -15,3 +15,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Working with Tree Model Nodes in Jackson](https://www.baeldung.com/jackson-json-node-tree-model)
- [Get all the Keys in a JSON String Using JsonNode](https://www.baeldung.com/java-jsonnode-get-keys)
- [Difference Between asText() and toString() in JsonNode](https://www.baeldung.com/java-jsonnode-astext-vs-tostring)
- [Deserialize Generic Type with Jackson](https://www.baeldung.com/java-deserialize-generic-type-with-jackson)

View File

@ -9,3 +9,4 @@ This module contains articles about MapStruct.
- [Using Multiple Source Objects with MapStruct](https://www.baeldung.com/mapstruct-multiple-source-objects)
- [Ignoring Unmapped Properties with MapStruct](https://www.baeldung.com/mapstruct-ignore-unmapped-properties)
- [Mapping Collections with MapStruct](https://www.baeldung.com/java-mapstruct-mapping-collections)
- [Use Mapper in Another Mapper with Mapstruct and Java](https://www.baeldung.com/java-mapstruct-nested-mapping)

View File

@ -1 +1,2 @@
## Relevant Articles
- [URL Matching in Spring Boot 3](https://www.baeldung.com/spring-boot-3-url-matching)

View File

@ -1,2 +1,3 @@
### Relevant Articles:
- [Spring Data JPA Run an App Without a Database](https://www.baeldung.com/spring-data-jpa-run-app-without-db)
- [Integrate AWS Secrets Manager in Spring Boot](https://www.baeldung.com/spring-boot-integrate-aws-secrets-manager)

View File

@ -9,3 +9,4 @@ This module contains articles about JUnit 5 Annotations
- [Guide to JUnit 5 Parameterized Tests](https://www.baeldung.com/parameterized-tests-junit-5)
- [Writing Templates for Test Cases Using JUnit 5](https://www.baeldung.com/junit5-test-templates)
- [JUnit 5 @Nested Test Classes](https://www.baeldung.com/junit-5-nested-test-classes)
- [A Guide to @Timeout Annotation in JUnit 5](https://www.baeldung.com/java-junit-5-timeout-annotation)

View File

@ -8,6 +8,7 @@
- [Running Selenium Scripts with JMeter](https://www.baeldung.com/selenium-jmeter)
- [Fixing Selenium WebDriver Executable Path Error](https://www.baeldung.com/java-selenium-webdriver-path-error)
- [Handle Browser Tabs With Selenium](https://www.baeldung.com/java-handle-browser-tabs-selenium)
- [Implicit Wait vs Explicit Wait in Selenium Webdriver](https://www.baeldung.com/selenium-implicit-explicit-wait)
#### Notes:
- to run the live tests for the article *Fixing Selenium WebDriver Executable Path Error*, follow the manual setup described