Merge pull request #13081 from edizor/master

README
This commit is contained in:
Loredana Crusoveanu 2022-11-25 12:02:00 +02:00 committed by GitHub
commit ab27a775d6
15 changed files with 18 additions and 2 deletions

View File

@ -11,3 +11,4 @@
- [Sorting Objects in a List by Date](https://www.baeldung.com/java-sort-list-by-date)
- [Fixed Size Queue Implementations in Java](https://www.baeldung.com/java-fixed-size-queue)
- [Difference Between Java Enumeration and Iterator](https://www.baeldung.com/java-enumeration-vs-iterator)
- [Sort Collection of Objects by Multiple Fields in Java](https://www.baeldung.com/java-sort-collection-multiple-fields)

View File

@ -12,4 +12,6 @@ This module contains articles about the Java List collection
- [How to Store HashMap<String, ArrayList> Inside a List](https://www.baeldung.com/java-hashmap-inside-list)
- [Convert a List to a Comma-Separated String](https://www.baeldung.com/java-list-comma-separated-string)
- [Set vs List in Java](https://www.baeldung.com/java-set-vs-list)
- [Inserting an Object in an ArrayList at a Specific Position](https://www.baeldung.com/java-insert-object-arraylist-specific-position)
- [Iterate Through Two ArrayLists Simultaneously](https://www.baeldung.com/iterate-through-two-arraylists-simultaneously)
- [[<-- Prev]](/core-java-modules/core-java-collections-list-3)

View File

@ -11,4 +11,5 @@ This module contains articles about basic Java concurrency
- [How to Stop Execution After a Certain Time in Java](https://www.baeldung.com/java-stop-execution-after-certain-time)
- [How to Get the Number of Threads in a Java Process](https://www.baeldung.com/java-get-number-of-threads)
- [Set the Name of a Thread in Java](https://www.baeldung.com/java-set-thread-name)
- [Thread vs. Single Thread Executor Service](https://www.baeldung.com/java-single-thread-executor-service)
- [[<-- Prev]](../core-java-concurrency-basic)[[Next -->]](../core-java-concurrency-basic-3)

View File

@ -7,3 +7,4 @@ This module contains articles about types in Java
- [Convert an Array of Primitives to an Array of Objects](https://www.baeldung.com/java-primitive-array-to-object-array)
- [Check if an Enum Value Exists in Java](https://www.baeldung.com/java-search-enum-values)
- [Generate a Random Value From an Enum](https://www.baeldung.com/java-enum-random-value)
- [Filling a List With All Enum Values in Java](https://www.baeldung.com/java-enum-values-to-list)

View File

@ -12,3 +12,4 @@ This module contains articles about performance of Java applications
- [Branch Prediction in Java](https://www.baeldung.com/java-branch-prediction)
- [Capturing a Java Thread Dump](https://www.baeldung.com/java-thread-dump)
- [JMX Ports](https://www.baeldung.com/jmx-ports)
- [Calling JMX MBean Method From a Shell Script](https://www.baeldung.com/jmx-mbean-shell-access)

View File

@ -3,3 +3,4 @@
This module contains articles about Bean Validation.
### Relevant Articles:
- [Object Validation After Deserialization](https://www.baeldung.com/java-object-validation-deserialization)

View File

@ -9,3 +9,4 @@
- [How to Replace Many if Statements in Java](https://www.baeldung.com/java-replace-if-statements)
- [Prototype Pattern in Java](https://www.baeldung.com/java-pattern-prototype)
- [Implementing Factory Pattern With Generics in Java](https://www.baeldung.com/java-factory-pattern-generics)
- [The Factory Design Pattern in Java](https://www.baeldung.com/java-factory-pattern)

View File

@ -1,2 +1,3 @@
## Relevant articles
- [Editing Existing PDF Files in Java](https://www.baeldung.com/java-edit-existing-pdf)
- [Get Information About a PDF in Java](https://www.baeldung.com/java-pdf-info)

View File

@ -13,3 +13,4 @@ This module contains articles about RxJava.
- [RxJava Maybe](https://www.baeldung.com/rxjava-maybe)
- [Combining RxJava Completables](https://www.baeldung.com/rxjava-completable)
- [RxJava Hooks](https://www.baeldung.com/rxjava-hooks)
- [Retry with Delay in RxJava](https://www.baeldung.com/rxjava-retry-with-delay)

View File

@ -2,4 +2,5 @@
This module contains articles about Spring Web MVC in Spring Boot projects.
### Relevant Articles:
### Relevant Articles:
- [Enable and Disable Endpoints at Runtime With Spring Boot](https://www.baeldung.com/spring-boot-enable-disable-endpoints-at-runtime)

View File

@ -9,3 +9,4 @@ The "REST With Spring" Classes: http://github.learnspringsecurity.com
- [Spring Security: Upgrading the Deprecated WebSecurityConfigurerAdapter](https://www.baeldung.com/spring-deprecated-websecurityconfigureradapter)
- More articles: [[<-- prev]](/spring-security-modules/spring-security-web-boot-3)
- [Spring @EnableMethodSecurity Annotation](https://www.baeldung.com/spring-enablemethodsecurity)

View File

@ -8,4 +8,5 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
### Relevant Articles:
- [Uploading MultipartFile with Spring RestTemplate](https://www.baeldung.com/spring-rest-template-multipart-upload)
- [Get and Post Lists of Objects with RestTemplate](https://www.baeldung.com/spring-rest-template-list)
- [Download a Large File Through a Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-download-large-file)
- [Download a Large File Through a Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-download-large-file)
- [Access HTTPS REST Service Using Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-secure-https-service)

View File

@ -9,4 +9,5 @@ This module contains articles about Spring with Thymeleaf
- [Spring MVC Data and Thymeleaf](https://www.baeldung.com/spring-mvc-thymeleaf-data)
- [Upload Image With Spring Boot and Thymeleaf](https://www.baeldung.com/spring-boot-thymeleaf-image-upload)
- [Getting a URL Attribute Value in Thymeleaf](https://www.baeldung.com/thymeleaf-url-attribute-value)
- [Expression Types in Thymeleaf](https://www.baeldung.com/java-thymeleaf-expression-types)
- [[<-- prev]](/spring-thymeleaf)

View File

@ -4,3 +4,4 @@ This module contains articles about Spring with Mockito
### Relevant Articles:
- [Injecting Mockito Mocks into Spring Beans](https://www.baeldung.com/injecting-mocks-in-spring)
- [SpringRunner vs MockitoJUnitRunner](https://www.baeldung.com/junit-springrunner-vs-mockitojunitrunner)

View File

@ -3,3 +3,4 @@
- [Introduction to TestNG](http://www.baeldung.com/testng)
- [Custom Reporting with TestNG](http://www.baeldung.com/testng-custom-reporting)
- [A Quick JUnit vs TestNG Comparison](https://www.baeldung.com/junit-vs-testng)
- [How to Run TestNG Tests on Jenkins](https://www.baeldung.com/ops/testng-jenkins)