Skip to content

Commit db7564f

Browse files
authored
Merge pull request eugenp#12135 from johnA1331/master
BAEL-53529 - add links to github-baeldung articles - Week 17 - 2022
2 parents b9026dd + 0402f9c commit db7564f

File tree

9 files changed

+12
-1
lines changed

9 files changed

+12
-1
lines changed

core-java-modules/core-java-11-2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ This module contains articles about Java 11 core features
1111
- [Invoking a SOAP Web Service in Java](https://www.baeldung.com/java-soap-web-service)
1212
- [Java HTTPS Client Certificate Authentication](https://www.baeldung.com/java-https-client-certificate-authentication)
1313
- [Call Methods at Runtime Using Java Reflection](https://www.baeldung.com/java-method-reflection)
14+
- [Java HttpClient Basic Authentication](https://www.baeldung.com/java-httpclient-basic-auth)

core-java-modules/core-java-collections-list-3/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ This module contains articles about the Java List collection
1212
- [How to Count Duplicate Elements in Arraylist](https://www.baeldung.com/java-count-duplicate-elements-arraylist)
1313
- [Finding the Differences Between Two Lists in Java](https://www.baeldung.com/java-lists-difference)
1414
- [List vs. ArrayList in Java](https://www.baeldung.com/java-list-vs-arraylist)
15+
- [How to Store HashMap<String, ArrayList> Inside a List](https://www.baeldung.com/java-hashmap-inside-list)
16+
- [Working With a List of Lists in Java](https://www.baeldung.com/java-list-of-lists)
1517
- [[<-- Prev]](/core-java-modules/core-java-collections-list-2)

core-java-modules/core-java-networking-3/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ This module contains articles about networking in Java
1010
- [Find Whether an IP Address Is in the Specified Range or Not in Java](https://www.baeldung.com/java-check-ip-address-range)
1111
- [Find the IP Address of a Client Connected to a Server](https://www.baeldung.com/java-client-get-ip-address)
1212
- [Unix Domain Socket in Java 16](https://www.baeldung.com/java-unix-domain-socket)
13+
- [Get the IP Address of the Current Machine Using Java](https://www.baeldung.com/java-get-ip-address)
1314
- [[<-- Prev]](/core-java-modules/core-java-networking-2)

core-java-modules/core-java-regex-2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
- [Lookahead and Lookbehind in Java Regex](https://www.baeldung.com/java-regex-lookahead-lookbehind)
55
- [Converting Camel Case and Title Case to Words in Java](https://www.baeldung.com/java-camel-case-title-case-to-words)
66
- [How to Use Regular Expressions to Replace Tokens in Strings in Java](https://www.baeldung.com/java-regex-token-replacement)
7-
- More articles: [[<-- prev]](/core-java-modules/core-java-regex)
7+
- [Creating a Java Array from Regular Expression Matches](https://www.baeldung.com/java-array-regex-matches)
8+
- More articles: [[<-- prev]](/core-java-modules/core-java-regex)

core-java-modules/core-java/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
## Core Java Cookbooks and Examples
22

33
### Relevant Articles:
4+
45
- [Getting Started with Java Properties](http://www.baeldung.com/java-properties)
56
- [Java Money and the Currency API](http://www.baeldung.com/java-money-and-currency)
67
- [Compiling Java *.class Files with javac](http://www.baeldung.com/javac)
78
- [Introduction to Javadoc](http://www.baeldung.com/javadoc)
89
- [A Guide to the ResourceBundle](http://www.baeldung.com/java-resourcebundle)
910
- [Merging java.util.Properties Objects](https://www.baeldung.com/java-merging-properties)
11+
- [Illegal Character Compilation Error](https://www.baeldung.com/java-illegal-character-error)

graphql/graphql-java/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ This module contains articles about GraphQL with Java
66

77
- [Introduction to GraphQL](https://www.baeldung.com/graphql)
88
- [Make a Call to a GraphQL Service from a Java Application](https://www.baeldung.com/java-call-graphql-service)
9+
- [Return Map from GraphQL](https://www.baeldung.com/java-graphql-return-map)

jersey/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ This module contains articles about Jersey.
1010
- [Exploring the Jersey Test Framework](https://www.baeldung.com/jersey-test)
1111
- [Explore Jersey Request Parameters](https://www.baeldung.com/jersey-request-parameters)
1212
- [Add a Header to a Jersey SSE Client Request](https://www.baeldung.com/jersey-sse-client-request-headers)
13+
- [Exception Handling With Jersey](https://www.baeldung.com/java-exception-handling-jersey)

persistence-modules/java-mongodb-2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ This module contains articles about MongoDB in Java.
1111
- [MongoDB Aggregations Using Java](https://www.baeldung.com/java-mongodb-aggregations)
1212
- [Retrieve a Value from MongoDB by Its Key Name](https://www.baeldung.com/mongodb-get-value-by-key-name)
1313
- [Push and Set Operations in Same MongoDB Update](https://www.baeldung.com/java-mongodb-push-set)
14+
- [Checking Connection to MongoDB](https://www.baeldung.com/mongodb-check-connection)
1415
- More articles: [[<-- prev]](../java-mongodb)

spring-security-modules/spring-security-core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This module contains articles about core Spring Security
1010
- [Deny Access on Missing @PreAuthorize to Spring Controller Methods](https://www.baeldung.com/spring-deny-access)
1111
- [Spring Security: Check If a User Has a Role in Java](https://www.baeldung.com/spring-security-check-user-role)
1212
- [Filtering Jackson JSON Output Based on Spring Security Role](https://www.baeldung.com/spring-security-role-filter-json)
13+
- [Handle Spring Security Exceptions](https://www.baeldung.com/spring-security-exceptions)
1314

1415
### Build the Project
1516

0 commit comments

Comments
 (0)