Skip to content

Commit fc13924

Browse files
charlesgonzalespivovarit
authored andcommitted
Bi-monthly fix (BAEL-9663) (eugenp#5523)
* Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.MD * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md
1 parent c533462 commit fc13924

File tree

18 files changed

+28
-5
lines changed

18 files changed

+28
-5
lines changed

algorithms/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@
3131
- [Round Up to the Nearest Hundred](https://www.baeldung.com/java-round-up-nearest-hundred)
3232
- [Merge Sort in Java](https://www.baeldung.com/java-merge-sort)
3333
- [Calculate Percentage in Java](https://www.baeldung.com/java-calculate-percentage)
34+
- [Quicksort Algorithm Implementation in Java](https://www.baeldung.com/java-quicksort)
35+
- [Insertion Sort in Java](https://www.baeldung.com/java-insertion-sort)
36+
- [Converting Between Byte Arrays and Hexadecimal Strings in Java](https://www.baeldung.com/java-byte-arrays-hex-strings)

apache-geode/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Relevant Articles:
2+
3+
- [A Quick Guide to Apache Geode](https://www.baeldung.com/apache-geode)

core-java-collections/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@
3838
- [Time Complexity of Java Collections](https://www.baeldung.com/java-collections-complexity)
3939
- [Operating on and Removing an Item from Stream](https://www.baeldung.com/java-use-remove-item-stream)
4040
- [An Introduction to Synchronized Java Collections](https://www.baeldung.com/java-synchronized-collections)
41+
- [Guide to EnumSet](https://www.baeldung.com/java-enumset)

core-java-io/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@
3131
- [Create a Symbolic Link with Java](http://www.baeldung.com/java-symlink)
3232
- [Quick Use of FilenameFilter](http://www.baeldung.com/java-filename-filter)
3333
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
34-
- [ Read a File into an ArrayList](https://www.baeldung.com/java-file-to-arraylist)
34+
- [Read a File into an ArrayList](https://www.baeldung.com/java-file-to-arraylist)
35+
- [Guide to Java OutputStream](https://www.baeldung.com/java-outputstream)

core-java/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,4 @@
157157
- [Hashing a Password in Java](https://www.baeldung.com/java-password-hashing)
158158
- [Java Switch Statement](https://www.baeldung.com/java-switch)
159159
- [The Modulo Operator in Java](https://www.baeldung.com/modulo-java)
160+
- [Ternary Operator In Java](https://www.baeldung.com/java-ternary-operator)

core-kotlin/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@
3939
- [Introduction to Kovenant Library for Kotlin](https://www.baeldung.com/kotlin-kovenant)
4040
- [Converting Kotlin Data Class from JSON using GSON](https://www.baeldung.com/kotlin-json-convert-data-class)
4141
- [Concatenate Strings in Kotlin](https://www.baeldung.com/kotlin-concatenate-strings)
42+
- [Kotlin return, break, continue Keywords](https://www.baeldung.com/kotlin-return-break-continue)

hibernate5/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@
1717
- [Mapping A Hibernate Query to a Custom Class](https://www.baeldung.com/hibernate-query-to-custom-class)
1818
- [@JoinColumn Annotation Explained](https://www.baeldung.com/jpa-join-column)
1919
- [Hibernate 5 Naming Strategy Configuration](https://www.baeldung.com/hibernate-naming-strategy)
20+
- [Proxy in Hibernate load() Method](https://www.baeldung.com/hibernate-proxy-load-method)

java-collections-maps/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
- [Sort a HashMap in Java](https://www.baeldung.com/java-hashmap-sort)
1717
- [Finding the Highest Value in a Java Map](https://www.baeldung.com/java-find-map-max)
1818
- [Merging Two Maps with Java 8](https://www.baeldung.com/java-merge-maps)
19+
- [How to Check If a Key Exists in a Map](https://www.baeldung.com/java-map-key-exists)

java-dates/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@
2121
- [How to Get the Start and the End of a Day using Java](http://www.baeldung.com/java-day-start-end)
2222
- [Calculate Age in Java](http://www.baeldung.com/java-get-age)
2323
- [Increment Date in Java](http://www.baeldung.com/java-increment-date)
24-
- [Add Hours To a Date In Java](http://www.baeldung.com/java-add-hours-date)
24+
- [Add Hours To a Date In Java](http://www.baeldung.com/java-add-hours-date)
25+
- [Guide to DateTimeFormatter](https://www.baeldung.com/java-datetimeformatter)

java-numbers/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
- [BigDecimal and BigInteger in Java](http://www.baeldung.com/java-bigdecimal-biginteger)
1313
- [Find All Pairs of Numbers in an Array That Add Up to a Given Sum](http://www.baeldung.com/java-algorithm-number-pairs-sum)
1414
- [Java – Random Long, Float, Integer and Double](http://www.baeldung.com/java-generate-random-long-float-integer-double)
15+
- [Using Math.sin with Degrees](https://www.baeldung.com/java-math-sin-degrees)

libraries-security/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
### Relevant Articles:
22

33
- [Guide to ScribeJava](https://www.baeldung.com/scribejava)
4+
- [Guide to Passay](https://www.baeldung.com/java-passay)

maven-polyglot/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
To run the maven-polyglot-json-app successfully, you first have to build the maven-polyglot-json-extension module using: mvn clean install.
22

3-
Related Articles:
3+
### Relevant Articles:
4+
- [Maven Polyglot](https://www.baeldung.com/maven-polyglot)

maven/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
- [Build a Jar with Maven and Ignore the Test Results](http://www.baeldung.com/maven-ignore-test-results)
1111
- [Maven Project with Multiple Source Directories](https://www.baeldung.com/maven-project-multiple-src-directories)
1212
- [Integration Testing with Maven](https://www.baeldung.com/maven-integration-test)
13+
- [Apache Maven Standard Directory Layout](https://www.baeldung.com/maven-directory-structure)
14+
- [Apache Maven Tutorial](https://www.baeldung.com/maven)
15+
- [Use the Latest Version of a Dependency in Maven](https://www.baeldung.com/maven-dependency-latest-version)

spring-5-reactive-security/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
88
- [Spring Boot Actuator](http://www.baeldung.com/spring-boot-actuators)
99
- [Spring Security 5 for Reactive Applications](http://www.baeldung.com/spring-security-5-reactive)
1010
- [Guide to Spring 5 WebFlux](http://www.baeldung.com/spring-webflux)
11-
11+
- [Introduction to the Functional Web Framework in Spring 5](https://www.baeldung.com/spring-5-functional-web)

spring-boot-mvc/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
- [Spring Web Annotations](http://www.baeldung.com/spring-mvc-annotations)
88
- [Spring Core Annotations](http://www.baeldung.com/spring-core-annotations)
99
- [Display RSS Feed with Spring MVC](http://www.baeldung.com/spring-mvc-rss-feed)
10-
10+
- [A Controller, Service and DAO Example with Spring Boot and JSF](https://www.baeldung.com/jsf-spring-boot-controller-service-dao)
11+
- [Cache Eviction in Spring Boot](https://www.baeldung.com/spring-boot-evict-cache)

spring-boot/README.MD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
3535
- [Spring Component Scanning](https://www.baeldung.com/spring-component-scanning)
3636
- [Load Spring Boot Properties From a JSON File](https://www.baeldung.com/spring-boot-json-properties)
3737
- [Display Auto-Configuration Report in Spring Boot](https://www.baeldung.com/spring-boot-auto-configuration-report)
38+
- [Logging to Graylog with Spring Boot](https://www.baeldung.com/graylog-with-spring-boot)

testing-modules/testng/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
- [Introduction to TestNG](http://www.baeldung.com/testng)
44
- [Custom Reporting with TestNG](http://www.baeldung.com/testng-custom-reporting)
5+
- [A Quick JUnit vs TestNG Comparison](https://www.baeldung.com/junit-vs-testng)

xml/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
- [Introduction to JiBX](http://www.baeldung.com/jibx)
44
- [XML Libraries Support in Java](http://www.baeldung.com/java-xml-libraries)
55
- [DOM parsing with Xerces](http://www.baeldung.com/java-xerces-dom-parsing)
6+
- [Write an org.w3.dom.Document to a File](https://www.baeldung.com/java-write-xml-document-file)

0 commit comments

Comments
 (0)