Merge pull request #11498 from johnA1331/master

BAEL-44253 - add links to github-baeldung articles
This commit is contained in:
Loredana Crusoveanu 2021-11-24 08:45:53 +02:00 committed by GitHub
commit 74797c43dd
7 changed files with 11 additions and 1 deletions

View File

@ -14,3 +14,4 @@ This module contains articles about Apache POI
- [Insert a Row in Excel Using Apache POI](https://www.baeldung.com/apache-poi-insert-excel-row)
- [Multiline Text in Excel Cell Using Apache POI](https://www.baeldung.com/apache-poi-write-multiline-text)
- [Set Background Color of a Cell with Apache POI](https://www.baeldung.com/apache-poi-background-color)
- [Add Borders to Excel Cells With Apache POI](https://www.baeldung.com/apache-poi-add-borders)

View File

@ -6,3 +6,4 @@
- [Checking if a Java Class is abstract Using Reflection](https://www.baeldung.com/java-reflection-is-class-abstract)
- [Invoking a Private Method in Java](https://www.baeldung.com/java-call-private-method)
- [Finding All Classes in a Java Package](https://www.baeldung.com/java-find-all-classes-in-package)
- [Invoke a Static Method Using Java Reflection API](https://www.baeldung.com/java-invoke-static-method-reflection)

View File

@ -7,4 +7,5 @@ This module contains articles about core Java Security
- [Secret Key and String Conversion in Java](https://www.baeldung.com/java-secret-key-to-string)
- [Enabling Unlimited Strength Cryptography in Java](https://www.baeldung.com/jce-enable-unlimited-strength)
- [Initialization Vector for Encryption](https://www.baeldung.com/java-encryption-iv)
- [HMAC in Java](https://www.baeldung.com/java-hmac)
- More articles: [[<-- prev]](/core-java-modules/core-java-security-2)

View File

@ -1,4 +1,5 @@
### Relevant Articles:
- [Ignoring Commas in Quotes When Splitting a Comma-separated String](https://www.baeldung.com/java-split-string-commas)
- [Compare Strings While Ignoring Whitespace in Java](https://www.baeldung.com/java-compare-string-whitespace)

View File

@ -6,9 +6,11 @@ This module contains articles about Jackson.
The "REST With Spring" Classes: http://bit.ly/restwithspring
### Relevant Articles:
### Relevant Articles:
- [Using Optional with Jackson](https://www.baeldung.com/jackson-optional)
- [Compare Two JSON Objects with Jackson](https://www.baeldung.com/jackson-compare-two-json-objects)
- [Jackson vs Gson](https://www.baeldung.com/jackson-vs-gson)
- [Inheritance with Jackson](https://www.baeldung.com/jackson-inheritance)
- [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)

View File

@ -3,6 +3,7 @@
This module contains articles about Project Lombok.
### Relevant Articles:
- [Introduction to Project Lombok](https://www.baeldung.com/intro-to-project-lombok)
- [Using Lomboks @Builder Annotation](https://www.baeldung.com/lombok-builder)
- [Using Lomboks @Getter for Boolean Fields](https://www.baeldung.com/lombok-getter-boolean)
@ -12,3 +13,5 @@ This module contains articles about Project Lombok.
- [Setting up Lombok with Eclipse and Intellij](https://www.baeldung.com/lombok-ide)
- [Using the @Singular Annotation with Lombok Builders](https://www.baeldung.com/lombok-builder-singular)
- [Using Lomboks @Accessors Annotation](https://www.baeldung.com/lombok-accessors)
- [Omitting Getter or Setter in Lombok](https://www.baeldung.com/lombok-omit-getter-setter)
- [Declaring Val and Var Variables in Lombok](https://www.baeldung.com/java-lombok-val-var)

View File

@ -3,3 +3,4 @@
- [Asserting Log Messages With JUnit](https://www.baeldung.com/junit-asserting-logs)
- [Assert Two Lists for Equality Ignoring Order in Java](https://www.baeldung.com/java-assert-lists-equality-ignore-order)
- [Assert That a Java Optional Has a Certain Value](https://www.baeldung.com/java-optional-assert-value)
- [Assert that an Object is from a Specific Type](https://www.baeldung.com/java-assert-object-of-type)