Merge pull request #14401 from edizor/master

Update README
This commit is contained in:
Loredana Crusoveanu 2023-07-14 17:24:32 +03:00 committed by GitHub
commit 346418a266
14 changed files with 20 additions and 1 deletions

View File

@ -1,2 +1,3 @@
## Relevant Articles
- [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)

View File

@ -6,3 +6,4 @@
- [Using a Mutex Object in Java](https://www.baeldung.com/java-mutex)
- [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)
- [Parallelize for Loop in Java](https://www.baeldung.com/java-for-loop-parallel)

View File

@ -8,4 +8,5 @@ This module contains articles about basic Java concurrency.
- [Thread.sleep() vs Awaitility.await()](https://www.baeldung.com/java-thread-sleep-vs-awaitility-await)
- [Is CompletableFuture Non-blocking?](https://www.baeldung.com/java-completablefuture-non-blocking)
- [Returning a Value After Finishing Threads Job in Java](https://www.baeldung.com/java-return-value-after-thread-finish)
- [CompletableFuture and ThreadPool in Java](https://www.baeldung.com/java-completablefuture-threadpool)
- [[<-- Prev]](../core-java-concurrency-basic-2)

View File

@ -1,4 +1,5 @@
### Relevant Articles:
- [Java Program to Estimate Pi](https://www.baeldung.com/java-monte-carlo-compute-pi)
- [Convert Integer to Hexadecimal in Java](https://www.baeldung.com/java-convert-int-to-hex)
- [Integer.class Vs. Integer.TYPE Vs. int.class](https://www.baeldung.com/java-integer-class-vs-type-vs-int)
- More articles: [[<-- prev]](../core-java-numbers-5)

View File

@ -1,2 +1,3 @@
### Relevant Articles:
- [Convert a Number to a Letter in Java](https://www.baeldung.com/java-convert-number-to-letter)
- [Convert Long to BigDecimal in Java](https://www.baeldung.com/java-convert-long-bigdecimal)

View File

@ -5,4 +5,6 @@
- [Check if a String Is All Uppercase or Lowercase in Java](https://www.baeldung.com/java-check-string-uppercase-lowercase)
- [Java Generate Random String](https://www.baeldung.com/java-random-string)
- [Fixing “constant string too long” Build Error](https://www.baeldung.com/java-constant-string-too-long-error)
- [Compact Strings in Java 9](https://www.baeldung.com/java-9-compact-string)
- [Compact Strings in Java 9](https://www.baeldung.com/java-9-compact-string)
- [Split a String Into Digit and Non-Digit Substrings](https://www.baeldung.com/java-split-string-digits-letters)
- [Check if a String Contains Non-Alphanumeric Characters](https://www.baeldung.com/java-string-test-special-characters)

View File

@ -11,3 +11,4 @@ This module contains articles about Annotations used in Hibernate.
- [Usage of the Hibernate @LazyCollection Annotation](https://www.baeldung.com/hibernate-lazycollection)
- [@Immutable in Hibernate](https://www.baeldung.com/hibernate-immutable)
- [Hibernate @CreationTimestamp and @UpdateTimestamp](https://www.baeldung.com/hibernate-creationtimestamp-updatetimestamp)
- [Difference Between @JoinColumn and @PrimaryKeyJoinColumn in JPA](https://www.baeldung.com/java-jpa-join-vs-primarykeyjoin)

View File

@ -1,3 +1,4 @@
### Relevant Articles:
- [Patterns for Iterating Over Large Result Sets With Spring Data JPA](https://www.baeldung.com/spring-data-jpa-iterate-large-result-sets)
- [Count the Number of Rows in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-row-count)
- More articles: [[<-- prev]](../spring-boot-persistence-2)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Quick Guide to YugabyteDB](https://www.baeldung.com/yugabytedb)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Documenting Spring Event-Driven API Using AsyncAPI and Springwolf](https://www.baeldung.com/java-spring-doc-asyncapi-springwolf)

View File

@ -1,3 +1,4 @@
### Relevant Articles:
- [Spring Boot With JavaServer Pages (JSP)](https://www.baeldung.com/spring-boot-jsp)
- [Reading a JSP Variable From JavaScript](https://www.baeldung.com/java-jsp-read-variable-js)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Setup Http Patch Request With OpenFeign](https://www.baeldung.com/openfeign-http-patch-request)

View File

@ -14,3 +14,4 @@ The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
- [Servlet 3 Async Support with Spring MVC and Spring Security](https://www.baeldung.com/spring-mvc-async-security)
- [Intro to Spring Security Expressions](https://www.baeldung.com/spring-security-expressions)
- [Error Handling for REST with Spring](https://www.baeldung.com/exception-handling-for-rest-with-spring)
- [How to Solve 403 Error in Spring Boot POST Request](https://www.baeldung.com/java-spring-fix-403-error)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Introduction to Selenide](https://www.baeldung.com/selenide)