[BAEL-13505] Move articles out of core-java part 1
This commit is contained in:
parent
434bfc980e
commit
3e155818d5
@ -1,3 +1,8 @@
|
|||||||
## Relevant Articles:
|
## Relevant Articles:
|
||||||
|
|
||||||
- [Will an Error Be Caught by Catch Block in Java?](https://www.baeldung.com/java-error-catch)
|
- [Will an Error Be Caught by Catch Block in Java?](https://www.baeldung.com/java-error-catch)
|
||||||
|
- [Java Global Exception Handler](http://www.baeldung.com/java-global-exception-handler)
|
||||||
|
- [Common Java Exceptions](http://www.baeldung.com/java-common-exceptions)
|
||||||
|
- [Throw Exception in Optional in Java 8](https://www.baeldung.com/java-optional-throw-exception)
|
||||||
|
- [How to Find an Exception’s Root Cause in Java](https://www.baeldung.com/java-exception-root-cause)
|
||||||
|
- [Java – Try with Resources](https://www.baeldung.com/java-try-with-resources)
|
||||||
|
@ -26,10 +26,30 @@
|
|||||||
<artifactId>commons-lang3</artifactId>
|
<artifactId>commons-lang3</artifactId>
|
||||||
<version>${commons-lang3.version}</version>
|
<version>${commons-lang3.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openjdk.jmh</groupId>
|
||||||
|
<artifactId>jmh-core</artifactId>
|
||||||
|
<version>${jmh-core.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openjdk.jmh</groupId>
|
||||||
|
<artifactId>jmh-generator-annprocess</artifactId>
|
||||||
|
<version>${jmh-generator-annprocess.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- test scoped -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.assertj</groupId>
|
||||||
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${assertj-core.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<commons-lang3.version>3.9</commons-lang3.version>
|
<commons-lang3.version>3.9</commons-lang3.version>
|
||||||
|
<jmh-core.version>1.19</jmh-core.version>
|
||||||
|
<assertj-core.version>3.10.0</assertj-core.version>
|
||||||
|
<jmh-generator-annprocess.version>1.19</jmh-generator-annprocess.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
### Relevant Articles
|
### Relevant Articles
|
||||||
|
|
||||||
- [Checking if a URL Exists in Java](https://www.baeldung.com/java-check-url-exists)
|
- [Checking if a URL Exists in Java](https://www.baeldung.com/java-check-url-exists)
|
||||||
|
- [Making a JSON POST Request With HttpURLConnection](https://www.baeldung.com/httpurlconnection-post)
|
||||||
|
- [Using Curl in Java](https://www.baeldung.com/java-curl)
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
## Relevant Articles
|
## Relevant Articles
|
||||||
|
|
||||||
- [Void Type in Java](https://www.baeldung.com/java-void-type)
|
- [Void Type in Java](https://www.baeldung.com/java-void-type)
|
||||||
|
- [Retrieve Fields from a Java Class Using Reflection](https://www.baeldung.com/java-reflection-class-fields)
|
Loading…
x
Reference in New Issue
Block a user