Skip to content

Commit 476dbbc

Browse files
committed
#BAEL-17518 add README descriptions
1 parent 68b080e commit 476dbbc

File tree

10 files changed

+36
-12
lines changed

10 files changed

+36
-12
lines changed

httpclient-simple/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
=========
2-
## This module contains articles that are part of the HTTPClient Ebook
1+
## HTTPClient Ebook
2+
3+
This module contains articles about HTTPClient that are part of the HTTPClient Ebook.
4+
5+
### Relevant Articles
36

47
- [HttpClient 4 – Get the Status Code](https://www.baeldung.com/httpclient-status-code)
58
- [HttpClient with SSL](https://www.baeldung.com/httpclient-ssl)

hystrix/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Hystrix
2+
3+
This module contains articles about Hystrix.
4+
15
### Relevant Articles:
26
- [Hystrix Integration with Existing Spring Application](https://www.baeldung.com/hystrix-integration-with-spring-aop)
37
- [Introduction to Hystrix](https://www.baeldung.com/introduction-to-hystrix)

image-processing/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
## Image Processing
2+
3+
This module contains articles about image processing.
4+
15
### Relevant Articles:
26
- [Working with Images in Java](https://www.baeldung.com/java-images)

immutables/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
## Immutables
2+
3+
This module contains articles about the Immutables library.
4+
15
### Relevant Articles:
26
- [Introduction to Immutables](https://www.baeldung.com/immutables)

jackson-2/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
=========
2-
31
## Jackson Cookbooks and Examples
42

3+
This module contains articles about Jackson.
4+
55
### The Course
66
The "REST With Spring" Classes: http://bit.ly/restwithspring
77

@@ -12,3 +12,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
1212
- [Converting JSON to CSV in Java](https://www.baeldung.com/java-converting-json-to-csv)
1313
- [Compare Two JSON Objects with Jackson](https://www.baeldung.com/jackson-compare-two-json-objects)
1414
- [Calling Default Serializer from Custom Serializer in Jackson](https://www.baeldung.com/jackson-call-default-serializer-from-custom-serializer)
15+
- More articles: [[<-- prev]](/../jackson)

jackson-simple/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
=========
21
### Jackson Articles that are also part of the e-book
32

3+
This module contains articles about Jackson that are also part of the Jackson Ebook.
4+
45
###The Course
56
The "REST With Spring" Classes: http://bit.ly/restwithspring
67

jackson/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
=========
2-
31
## Jackson Cookbooks and Examples
42

3+
This module contains articles about Jackson.
4+
55
###The Course
66
The "REST With Spring" Classes: http://bit.ly/restwithspring
77

@@ -32,4 +32,5 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
3232
- [Convert XML to JSON Using Jackson](https://www.baeldung.com/jackson-convert-xml-json)
3333
- [Deserialize Immutable Objects with Jackson](https://www.baeldung.com/jackson-deserialize-immutable-objects)
3434
- [Mapping a Dynamic JSON Object with Jackson](https://www.baeldung.com/jackson-mapping-dynamic-object)
35+
- More articles: [[next -->]](/../jackson-2)
3536

java-collections-conversions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
=========
2-
31
## Java Collections Cookbooks and Examples
42

3+
This module contains articles about conversions among Collection types and arrays in Java.
4+
55
### Relevant Articles:
66
- [Converting between an Array and a List in Java](https://www.baeldung.com/convert-array-to-list-and-list-to-array)
77
- [Converting between an Array and a Set in Java](https://www.baeldung.com/convert-array-to-set-and-set-to-array)

java-collections-maps-2/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Relevant Articles:
1+
## Java Collections Cookbooks and Examples
2+
3+
This module contains articles about Map data structures in Java.
4+
5+
### Relevant Articles:
26
- [Map of Primitives in Java](https://www.baeldung.com/java-map-primitives)
37
- [Copying a HashMap in Java](https://www.baeldung.com/java-copy-hashmap)
48
- [Guide to Java HashMap]()
@@ -10,3 +14,4 @@
1014
- [Finding the Highest Value in a Java Map](https://www.baeldung.com/java-find-map-max)
1115
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
1216
- [Java TreeMap vs HashMap](https://www.baeldung.com/java-treemap-vs-hashmap)
17+
- More articles: [[<-- prev>]](/../java-collections-maps)

java-collections-maps/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
=========
2-
31
## Java Collections Cookbooks and Examples
42

3+
This module contains articles about Map data structures in Java.
4+
55
### Relevant Articles:
66
- [Guide to the Guava BiMap](https://www.baeldung.com/guava-bimap)
77
- [The Java HashMap Under the Hood](https://www.baeldung.com/java-hashmap)
@@ -13,3 +13,4 @@
1313
- [Comparing Two HashMaps in Java](https://www.baeldung.com/java-compare-hashmaps)
1414
- [Immutable Map Implementations in Java](https://www.baeldung.com/java-immutable-maps)
1515
- [Guide to Apache Commons MultiValuedMap](https://www.baeldung.com/apache-commons-multi-valued-map)
16+
- More articles: [[next -->]](/../java-collections-maps-2)

0 commit comments

Comments
 (0)