Skip to content

Commit f431a4c

Browse files
charlesgonzalespivovarit
authored andcommitted
add links (eugenp#4804)
* Update README.md * Update README.md * Update README.md * Update README.md * Create 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 * Update README.md * Update README.md
1 parent bb3afbc commit f431a4c

15 files changed

Lines changed: 26 additions & 2 deletions

File tree

apache-meecrowave/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+
- [Building a Microservice with Apache Meecrowave](http://www.baeldung.com/apache-meecrowave)

core-java-8/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,5 @@
5454
- [Java 8 Unsigned Arithmetic Support](http://www.baeldung.com/java-unsigned-arithmetic)
5555
- [How to Get the Start and the End of a Day using Java](http://www.baeldung.com/java-day-start-end)
5656
- [Generalized Target-Type Inference in Java](http://www.baeldung.com/java-generalized-target-type-inference)
57+
- [Image to Base64 String Conversion](http://www.baeldung.com/java-base64-image-string)
58+
- [Calculate Age in Java](http://www.baeldung.com/java-get-age)

core-java-collections/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@
3030
- [How to TDD a List Implementation in Java](http://www.baeldung.com/java-test-driven-list)
3131
- [How to Store Duplicate Keys in a Map in Java?](http://www.baeldung.com/java-map-duplicate-keys)
3232
- [Getting the Size of an Iterable in Java](http://www.baeldung.com/java-iterable-size)
33+
- [Iterating Backward Through a List](http://www.baeldung.com/java-list-iterate-backwards)

core-java-io/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@
2828
- [Guide to Java NIO2 Asynchronous Channel APIs](http://www.baeldung.com/java-nio-2-async-channels)
2929
- [A Guide to NIO2 Asynchronous Socket Channel](http://www.baeldung.com/java-nio2-async-socket-channel)
3030
- [Download a File From an URL in Java](http://www.baeldung.com/java-download-file)
31+
- [Create a Symbolic Link with Java](http://www.baeldung.com/java-symlink)
32+
- [Quick Use of FilenameFilter](http://www.baeldung.com/java-filename-filter)

core-java/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,8 @@
163163
- [Console I/O in Java](http://www.baeldung.com/java-console-input-output)
164164
- [Guide to the java.util.Arrays Class](http://www.baeldung.com/java-util-arrays)
165165
- [Create a Custom Exception in Java](http://www.baeldung.com/java-new-custom-exception)
166+
- [Guide to java.util.GregorianCalendar](http://www.baeldung.com/java-gregorian-calendar)
167+
- [Java Global Exception Handler](http://www.baeldung.com/java-global-exception-handler)
168+
- [Encrypting and Decrypting Files in Java](http://www.baeldung.com/java-cipher-input-output-stream)
169+
- [How to Get the Size of an Object in Java](http://www.baeldung.com/java-size-of-object)
170+
- [Exception Handling in Java](http://www.baeldung.com/java-exceptions)

core-kotlin/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@
3434
- [Java EE 8 Security API](http://www.baeldung.com/java-ee-8-security)
3535
- [Kotlin with Ktor](http://www.baeldung.com/kotlin-ktor)
3636
- [Working with Enums in Kotlin](http://www.baeldung.com/kotlin-enum)
37+
- [Create a Java and Kotlin Project with Maven](http://www.baeldung.com/kotlin-maven-java-project)
38+
- [Reflection with Kotlin](http://www.baeldung.com/kotlin-reflection)

google-web-toolkit/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### Relevant Articles:
2+
- [Introduction to GWT](http://www.baeldung.com/gwt)

libraries/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
- [Implementing a FTP-Client in Java](http://www.baeldung.com/java-ftp-client)
8686
- [Convert String to Date in Java](http://www.baeldung.com/java-string-to-date)
8787
- [Histograms with Apache Commons Frequency](http://www.baeldung.com/apache-commons-frequency)
88-
88+
- [Guide to Resilience4j](http://www.baeldung.com/resilience4j)
8989

9090
The libraries module contains examples related to small libraries that are relatively easy to use and does not require any separate module of its own.
9191

patterns/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
###Relevant Articles:
1+
### Relevant Articles:
22
- [A Guide to the Front Controller Pattern in Java](http://www.baeldung.com/java-front-controller-pattern)
33
- [Introduction to Intercepting Filter Pattern in Java](http://www.baeldung.com/intercepting-filter-pattern-in-java)
44
- [Implementing the Template Method Pattern in Java](http://www.baeldung.com/java-template-method-pattern)

patterns/design-patterns/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
- [Composite Design Pattern in Java](http://www.baeldung.com/java-composite-pattern)
1111
- [Visitor Design Pattern in Java](http://www.baeldung.com/java-visitor-pattern)
1212
- [The DAO Pattern in Java](http://www.baeldung.com/java-dao-pattern)
13+
- [Interpreter Design Pattern in Java](http://www.baeldung.com/java-interpreter-pattern)

0 commit comments

Comments
 (0)