Skip to content

Commit 9506afb

Browse files
authored
Merge branch 'master' into bael-16637
2 parents cf1a250 + e08d6d1 commit 9506afb

File tree

1,276 files changed

+9042
-4977
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,276 files changed

+9042
-4977
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,5 @@ jta/transaction-logs/
8383
software-security/sql-injection-samples/derby.log
8484
spring-soap/src/main/java/com/baeldung/springsoap/gen/
8585
/report-*.json
86-
transaction.log
86+
transaction.log
87+
*-shell.log

akka-streams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Relevant articles
22

3-
- [Guide to Akka Streams](http://www.baeldung.com/akka-streams)
3+
- [Guide to Akka Streams](https://www.baeldung.com/akka-streams)

algorithms-genetic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Relevant articles:
22

3-
- [Introduction to Jenetics Library](http://www.baeldung.com/jenetics)
4-
- [Ant Colony Optimization](http://www.baeldung.com/java-ant-colony-optimization)
3+
- [Introduction to Jenetics Library](https://www.baeldung.com/jenetics)
4+
- [Ant Colony Optimization](https://www.baeldung.com/java-ant-colony-optimization)
55
- [Design a Genetic Algorithm in Java](https://www.baeldung.com/java-genetic-algorithm)
66
- [The Traveling Salesman Problem in Java](https://www.baeldung.com/java-simulated-annealing-for-traveling-salesman)

algorithms-miscellaneous-2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Relevant articles:
22

3-
- [Dijkstra Algorithm in Java](https://www.baeldung.com/java-dijkstra)
3+
- [Dijkstra Shortest Path Algorithm in Java](https://www.baeldung.com/java-dijkstra)
44
- [Introduction to Cobertura](https://www.baeldung.com/cobertura)
55
- [Test a Linked List for Cyclicity](https://www.baeldung.com/java-linked-list-cyclicity)
66
- [Introduction to JGraphT](https://www.baeldung.com/jgrapht)
77
- [A Maze Solver in Java](https://www.baeldung.com/java-solve-maze)
88
- [Create a Sudoku Solver in Java](https://www.baeldung.com/java-sudoku)
99
- [Displaying Money Amounts in Words](https://www.baeldung.com/java-money-into-words)
10-
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)
10+
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)

algorithms-miscellaneous-3/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
## Algorithms - Miscellaneous
2+
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/algorithms-sorting) and
4+
[genetic algorithms](/algorithms-genetic), have their own dedicated modules.
5+
16
## Relevant Articles:
27

38
- [Java Two Pointer Technique](https://www.baeldung.com/java-two-pointer-technique)
49
- [Implementing Simple State Machines with Java Enums](https://www.baeldung.com/java-enum-simple-state-machine)
5-
- [Converting Between Roman and Arabic Numerals in Java](http://www.baeldung.com/java-convert-roman-arabic)
6-
- [Practical Java Examples of the Big O Notation](http://www.baeldung.com/java-algorithm-complexity)
10+
- [Converting Between Roman and Arabic Numerals in Java](https://www.baeldung.com/java-convert-roman-arabic)
11+
- [Practical Java Examples of the Big O Notation](https://www.baeldung.com/java-algorithm-complexity)
712
- [Checking If a List Is Sorted in Java](https://www.baeldung.com/java-check-if-list-sorted)
813
- [Checking if a Java Graph has a Cycle](https://www.baeldung.com/java-graph-has-a-cycle)
914
- [A Guide to the Folding Technique in Java](https://www.baeldung.com/folding-hashing-technique)
1015
- [Creating a Triangle with for Loops in Java](https://www.baeldung.com/java-print-triangle)
11-
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
16+
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
17+
- More articles: [[<-- prev]](/algorithms-miscellaneous-2) [[next -->]](/algorithms-miscellaneous-4)

algorithms-sorting/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
## Relevant articles:
1+
## Algorithms - Sorting
22

3-
- [Bubble Sort in Java](http://www.baeldung.com/java-bubble-sort)
3+
This module contains articles about sorting algorithms.
4+
5+
### Relevant articles:
6+
7+
- [Bubble Sort in Java](https://www.baeldung.com/java-bubble-sort)
48
- [Merge Sort in Java](https://www.baeldung.com/java-merge-sort)
59
- [Quicksort Algorithm Implementation in Java](https://www.baeldung.com/java-quicksort)
610
- [Insertion Sort in Java](https://www.baeldung.com/java-insertion-sort)
711
- [Heap Sort in Java](https://www.baeldung.com/java-heap-sort)
812
- [Shell Sort in Java](https://www.baeldung.com/java-shell-sort)
913
- [Counting Sort in Java](https://www.baeldung.com/java-counting-sort)
14+
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)

animal-sniffer-mvn-plugin/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
## Relevant articles:
1+
## Animal Sniffer Maven Plugin
22

3-
[Introduction to Animal Sniffer Maven Plugin](http://www.baeldung.com/maven-animal-sniffer)
3+
This module contains articles about the Animal Sniffer Maven Plugin
4+
5+
### Relevant articles:
6+
7+
[Introduction to Animal Sniffer Maven Plugin](https://www.baeldung.com/maven-animal-sniffer)

annotations/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Annotations
2+
3+
This module contains articles about Java annotations
4+
5+
### Relevant Articles:
6+
7+
- [Java Annotation Processing and Creating a Builder](https://www.baeldung.com/java-annotation-processing-builder)

annotations/readme.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

antlr/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## ANTLR
2+
3+
This module contains articles about ANTLR
4+
15
### Relevant Articles:
26

3-
- [Java with ANTLR](http://www.baeldung.com/java-antlr)
7+
- [Java with ANTLR](https://www.baeldung.com/java-antlr)

0 commit comments

Comments
 (0)