Merge pull request #11061 from johnA1331/master

BAEL-38308 - add links to github-baeldung articles
This commit is contained in:
Loredana Crusoveanu 2021-07-22 09:19:42 +03:00 committed by GitHub
commit 8601038950
7 changed files with 12 additions and 0 deletions

View File

@ -10,3 +10,5 @@
- [Overview of Java Built-in Annotations](https://www.baeldung.com/java-default-annotations) - [Overview of Java Built-in Annotations](https://www.baeldung.com/java-default-annotations)
- [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation) - [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation)
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency) - [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
- [Why Missing Annotations Dont Cause ClassNotFoundException](https://www.baeldung.com/classnotfoundexception-missing-annotation)
- [Valid @SuppressWarnings Warning Names](https://www.baeldung.com/java-suppresswarnings-valid-names)

View File

@ -8,4 +8,5 @@ This module contains articles about string conversions from/to another type.
- [Convert Character Array to String in Java](https://www.baeldung.com/java-char-array-to-string) - [Convert Character Array to String in Java](https://www.baeldung.com/java-char-array-to-string)
- [Converting String to BigDecimal in Java](https://www.baeldung.com/java-string-to-bigdecimal) - [Converting String to BigDecimal in Java](https://www.baeldung.com/java-string-to-bigdecimal)
- [Converting String to BigInteger in Java](https://www.baeldung.com/java-string-to-biginteger) - [Converting String to BigInteger in Java](https://www.baeldung.com/java-string-to-biginteger)
- [Convert a String to Camel Case](https://www.baeldung.com/java-string-to-camel-case)
- More articles: [[<-- prev]](/core-java-string-conversions) - More articles: [[<-- prev]](/core-java-string-conversions)

View File

@ -0,0 +1,3 @@
## Relevant Articles:
- [Guavas Futures and ListenableFuture](https://www.baeldung.com/guava-futures-listenablefuture)

View File

@ -3,3 +3,4 @@
- [Probability in Java](https://www.baeldung.com/java-probability) - [Probability in Java](https://www.baeldung.com/java-probability)
- [Understanding the & 0xff Value in Java](https://www.baeldung.com/java-and-0xff) - [Understanding the & 0xff Value in Java](https://www.baeldung.com/java-and-0xff)
- [Determine if an Integers Square Root Is an Integer in Java](https://www.baeldung.com/java-find-if-square-root-is-integer) - [Determine if an Integers Square Root Is an Integer in Java](https://www.baeldung.com/java-find-if-square-root-is-integer)
- [Guide to Java BigInteger](https://www.baeldung.com/java-biginteger)

View File

@ -0,0 +1,3 @@
## Relevant Articles:
- [Plugin Management in Maven](https://www.baeldung.com/maven-plugin-management)

View File

@ -5,4 +5,5 @@ This module contains articles about RabbitMQ.
### Relevant articles ### Relevant articles
- [Introduction to RabbitMQ](https://www.baeldung.com/rabbitmq) - [Introduction to RabbitMQ](https://www.baeldung.com/rabbitmq)
- [Exchanges, Queues, and Bindings in RabbitMQ](https://www.baeldung.com/java-rabbitmq-exchanges-queues-bindings) - [Exchanges, Queues, and Bindings in RabbitMQ](https://www.baeldung.com/java-rabbitmq-exchanges-queues-bindings)
- [Pub-Sub vs. Message Queues](https://www.baeldung.com/pub-sub-vs-message-queues)

View File

@ -6,3 +6,4 @@ This module contains articles about logging in Spring Boot projects with Log4j 2
- [Logging in Spring Boot](https://www.baeldung.com/spring-boot-logging) - [Logging in Spring Boot](https://www.baeldung.com/spring-boot-logging)
- [Logging to Graylog with Spring Boot](https://www.baeldung.com/graylog-with-spring-boot) - [Logging to Graylog with Spring Boot](https://www.baeldung.com/graylog-with-spring-boot)
- [Log Groups in Spring Boot 2.1](https://www.baeldung.com/spring-boot-log-groups) - [Log Groups in Spring Boot 2.1](https://www.baeldung.com/spring-boot-log-groups)
- [Writing Log Data to Syslog Using Log4j2](https://www.baeldung.com/log4j-to-syslog)