Merge pull request #14339 from edizor/master

Update README
This commit is contained in:
Loredana Crusoveanu 2023-07-03 13:07:16 +03:00 committed by GitHub
commit 03385bed6a
15 changed files with 19 additions and 2 deletions

View File

@ -11,3 +11,4 @@ You can build the project from the command line using: *mvn clean install*, or i
- [Get Last N Messages in Apache Kafka Topic](https://www.baeldung.com/java-apache-kafka-get-last-n-messages)
- [Is a Key Required as Part of Sending Messages to Kafka?](https://www.baeldung.com/java-kafka-message-key)
- [Read Data From the Beginning Using Kafka Consumer API](https://www.baeldung.com/java-kafka-consumer-api-read)
- [Get Partition Count for a Topic in Kafka](https://www.baeldung.com/java-kafka-partition-count-topic)

View File

@ -2,3 +2,4 @@
- [Record Patterns in Java 19](https://www.baeldung.com/java-19-record-patterns)
- [Structured Concurrency in Java 19](https://www.baeldung.com/java-structured-concurrency)
- [Possible Root Causes for High CPU Usage in Java](https://www.baeldung.com/java-high-cpu-usage-causes)
- [The Vector API in Java 19](https://www.baeldung.com/java-vector-api)

View File

@ -4,4 +4,5 @@
- [Creating a LocalDate with Values in Java](https://www.baeldung.com/java-creating-localdate-with-values)
- [Parsing Date Strings with Varying Formats](https://www.baeldung.com/java-parsing-dates-many-formats)
- [How Many Days Are There in a Particular Month of a Given Year?](https://www.baeldung.com/days-particular-month-given-year)
- [Difference Between Instant and LocalDateTime](https://www.baeldung.com/java-instant-vs-localdatetime)
- [[<-- Prev]](/core-java-modules/core-java-datetime-java8-1)

View File

@ -7,3 +7,4 @@ This module contains articles about arrays conversion in Java
- [Converting Between Stream and Array in Java](https://www.baeldung.com/java-stream-to-array)
- [Convert a Byte Array to a Numeric Representation in Java](https://www.baeldung.com/java-byte-array-to-number)
- [Converting a String Array Into an int Array in Java](https://www.baeldung.com/java-convert-string-array-to-int-array)
- [Convert Java Array to Iterable](https://www.baeldung.com/java-array-convert-to-iterable)

View File

@ -4,3 +4,4 @@ This module contains articles about Java Booleans.
### Relevant Articles:
- [Convert Boolean to String in Java](https://www.baeldung.com/java-convert-boolean-to-string)
- [Difference Between Boolean.TRUE and true in Java](https://www.baeldung.com/java-boolean-true-primitive-vs-constant)

View File

@ -6,4 +6,6 @@ This module contains articles about date operations in Java.
- [Create Date From Unix Timestamp in Java](https://www.baeldung.com/java-date-unix-timestamp)
- [Convert java.util.Date to java.sql.Date](https://www.baeldung.com/java-convert-util-date-to-sql)
- [How to Determine Date of the First Day of the Week Using LocalDate in Java](https://www.baeldung.com/java-first-day-of-the-week)
- [Adding One Month to Current Date in Java](https://www.baeldung.com/java-adding-one-month-to-current-date)
- [How to Get Last Day of a Month in Java](https://www.baeldung.com/java-last-day-month)
- [[<-- Prev]](/core-java-modules/core-java-date-operations-2)

View File

@ -13,4 +13,5 @@ This module contains articles about core Java Security
- [Error: “trustAnchors parameter must be non-empty”](https://www.baeldung.com/java-trustanchors-parameter-must-be-non-empty)
- [Common Exceptions of Crypto APIs in Java](https://www.baeldung.com/java-crypto-apis-exceptions)
- [Hashing With Argon2 in Java](https://www.baeldung.com/java-argon2-hashing)
- [Hex Representation of a SHA-1 Digest of a String in Java](https://www.baeldung.com/java-string-sha1-hexadecimal)
- More articles: [[<-- prev]](/core-java-modules/core-java-security-2)

View File

@ -16,3 +16,5 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [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)
- [Setting Default Values to Null Fields in Jackson Mapping](https://www.baeldung.com/java-jackson-mapping-default-values-null-fields)
- [Removing JSON Elements With Jackson](https://www.baeldung.com/java-jackson-remove-json-elements)

View File

@ -5,3 +5,4 @@ This module contains articles about JAXB.
### Relevant Articles:
- [Guide to JAXB](https://www.baeldung.com/jaxb)
- [Unmarshalling Dates Using JAXB](https://www.baeldung.com/jaxb-unmarshalling-dates)
- [JAXP vs JAXB: XML Processing APIs Compared](https://www.baeldung.com/java-jaxp-vs-jaxb)

View File

@ -3,5 +3,5 @@
This module contains articles about Apache Commons libraries.
### Relevant articles
- More articles: [[<--prev]](../libraries-apache-commons)
- [Extracting a Tar File in Java](https://www.baeldung.com/java-extract-tar-file)
- More articles: [[<--prev]](../libraries-apache-commons)

View File

@ -12,4 +12,5 @@ This module contains articles about Project Lombok.
- [Constructor Injection in Spring with Lombok](https://www.baeldung.com/spring-injection-lombok)
- [@StandardException Annotation in Lombok](https://www.baeldung.com/lombok-standardexception-annotation)
- [Lombok EqualsAndHashCode Annotation](https://www.baeldung.com/java-lombok-equalsandhashcode)
- [Lomboks @RequiredArgsConstructor Annotation](https://www.baeldung.com/java-lombok-constructor-annotation)
- More articles: [[<-- prev]](../lombok)

View File

@ -0,0 +1,2 @@
## Relevant Articles
- [Starting the Maven Build From the Point Where It Failed](https://www.baeldung.com/maven-resume-failed-build)

View File

@ -1,3 +1,4 @@
### Relevant Articles:
- [Memento Design Pattern in Java](https://www.baeldung.com/java-memento-design-pattern)
- [Difference Between Fluent Interface and Builder Pattern in Java](https://www.baeldung.com/java-fluent-interface-vs-builder-pattern)
- [Smart Batching in Java](https://www.baeldung.com/java-smart-batching)

View File

@ -1,3 +1,4 @@
# Relevant Articles
- [How to Insert a HashMap Into MongoDB With Java?](https://www.baeldung.com/java-mongodb-insert-hashmap)
- [MongoDB Field Level Encryption](https://www.baeldung.com/mongodb-field-level-encryption)
- More articles: [[<--prev]](../spring-boot-persistence-mongodb-2)

View File

@ -7,4 +7,5 @@ This module contains articles about Spring Data JPA.
- [How to Persist a List of String in JPA?](https://www.baeldung.com/java-jpa-persist-string-list)
- [Hibernate Natural IDs in Spring Boot](https://www.baeldung.com/spring-boot-hibernate-natural-ids)
- [Correct Use of flush() in JPA](https://www.baeldung.com/spring-jpa-flush)
- [Difference Between findBy and findOneBy in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-findby-vs-findoneby)
- More articles: [[<-- prev]](../spring-data-jpa-repo-2)