Merge pull request #13165 from edizor/master

Update README
This commit is contained in:
Loredana Crusoveanu 2022-12-15 13:13:09 +02:00 committed by GitHub
commit 3a3784e689
13 changed files with 16 additions and 0 deletions

View File

@ -11,4 +11,5 @@ This module contains articles about Apache POI.
- [Creating a MS PowerPoint Presentation in Java](https://www.baeldung.com/apache-poi-slideshow)
- [Finding the Last Row in an Excel Spreadsheet From Java](https://www.baeldung.com/java-excel-find-last-row)
- [Setting Formulas in Excel with Apache POI](https://www.baeldung.com/java-apache-poi-set-formulas)
- [Set the Date Format Using Apache POI](https://www.baeldung.com/java-apache-poi-date-format)
- More articles: [[<-- prev]](../apache-poi)

View File

@ -14,3 +14,4 @@
- [Sort Collection of Objects by Multiple Fields in Java](https://www.baeldung.com/java-sort-collection-multiple-fields)
- [Guide to Java PriorityQueue](https://www.baeldung.com/java-priorityqueue)
- [Java Generics PECS Producer Extends Consumer Super](https://www.baeldung.com/java-generics-pecs)
- [Reversing a Stack in Java](https://www.baeldung.com/java-reversing-a-stack)

View File

@ -1,3 +1,4 @@
## Relevant articles:
- [Functional Programming in Java](https://www.baeldung.com/java-functional-programming)
- [Functors in Java](https://www.baeldung.com/java-functors)

View File

@ -8,3 +8,4 @@
- [Method References in Java](https://www.baeldung.com/java-method-references)
- [The Double Colon Operator in Java 8](https://www.baeldung.com/java-8-double-colon-operator)
- [Serialize a Lambda in Java](https://www.baeldung.com/java-serialize-lambda)
- [Convert Anonymous Class into Lambda in Java](https://www.baeldung.com/java-from-anonymous-class-to-lambda)

View File

@ -10,3 +10,4 @@ This module contains articles about core features in the Java language
- [Handle Classes With the Same Name in Java](https://www.baeldung.com/java-classes-same-name)
- [Variable Instantiation on Declaration vs. on Constructor in Java](https://www.baeldung.com/java-variable-instantiation-declaration-vs-constructor)
- [Infinity in Java](https://www.baeldung.com/java-infinity)
- [Type Parameter vs Wildcard in Java Generics](https://www.baeldung.com/java-generics-type-parameter-vs-wildcard)

View File

@ -9,4 +9,5 @@
- [Java Program to Find the Roots of a Quadratic Equation](https://www.baeldung.com/roots-quadratic-equation)
- [Create a BMI Calculator in Java](https://www.baeldung.com/java-body-mass-index-calculator)
- [Java Program to Calculate the Standard Deviation](https://www.baeldung.com/java-calculate-standard-deviation)
- [Java Program to Print Pascals Triangle](https://www.baeldung.com/java-pascal-triangle)
- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-2)

View File

@ -8,3 +8,4 @@ This module contains articles about Java operators
- [Bitmasking in Java with Bitwise Operators](https://www.baeldung.com/java-bitmasking)
- [Getting a Bit at a Certain Position from Integral Values](https://www.baeldung.com/java-get-bit-at-position)
- [Check if at Least Two Out of Three Booleans Are True in Java](https://www.baeldung.com/java-check-two-of-three-booleans)
- [Alternatives for instanceof Operator in Java](https://www.baeldung.com/java-instanceof-alternatives)

View File

@ -1 +1,3 @@
### Relevant Articles:
- [Getting Started with Blaze Persistence](https://www.baeldung.com/blaze-persistence-tutorial)

View File

@ -14,3 +14,4 @@ This module contains articles about RxJava.
- [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)
- [RxJava Single.just() vs Single.fromCallable()](https://www.baeldung.com/rxjava-single-just-single-fromcallable)

View File

@ -0,0 +1,3 @@
## Relevant Articles
- [Managing JWT With Auth0 java-jwt](https://www.baeldung.com/java-auth0-jwt)

View File

@ -11,3 +11,4 @@ This module contains articles about Spring Cloud Gateway
- [Using Spring Cloud Gateway with OAuth 2.0 Patterns](https://www.baeldung.com/spring-cloud-gateway-oauth2)
- [URL Rewriting With Spring Cloud Gateway](https://www.baeldung.com/spring-cloud-gateway-url-rewriting)
- [Processing the Response Body in Spring Cloud Gateway](https://www.baeldung.com/spring-cloud-gateway-response-body)
- [Rate Limiting With Client IP in Spring Cloud Gateway](https://www.baeldung.com/spring-cloud-gateway-rate-limit-by-client-ip)

View File

@ -3,6 +3,7 @@
This module contains articles about Springdoc with Spring Security
### Relevant Articles:
- [Form Login and Basic Authentication in springdoc-openapi](https://www.baeldung.com/springdoc-openapi-form-login-and-basic-authentication)
### Running This Project:

View File

@ -7,6 +7,7 @@
- [Taking Screenshots With Selenium WebDriver](https://www.baeldung.com/java-selenium-screenshots)
- [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)
#### Notes:
- to run the live tests for the article *Fixing Selenium WebDriver Executable Path Error*, follow the manual setup described