π JAVA_HOME should point to a JDK not a JRE
https://www.baeldung.com/maven-java-home-jdk-jre
β‘οΈ @JavaLearnZone
https://www.baeldung.com/maven-java-home-jdk-jre
β‘οΈ @JavaLearnZone
Baeldung
Maven Error βJAVA_HOME should point to a JDK not a JREβ | Baeldung
Learn about the root cause of the Maven error 'JAVA_HOME should point to a JDK not a JRE' and how to resolve it
π ArrayList vs. LinkedList vs. HashMap in Java
https://www.baeldung.com/java-arraylist-vs-linkedlist-vs-hashmap
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-arraylist-vs-linkedlist-vs-hashmap
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
ArrayList vs. LinkedList vs. HashMap in Java | Baeldung
Learn about the differences between three of the most common Java Collections: ArrayList, LinkedList, and HashMap
π Intro to Google Cloud Storage with Java
https://www.baeldung.com/java-google-cloud-storage
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-google-cloud-storage
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Intro to Google Cloud Storage with Java | Baeldung
Hit the ground running with Google Cloud Storage with quick examples of how to create a bucket, write, read, and update data.
π A Quick Guide to Post Requests with OkHttp
https://www.baeldung.com/okhttp-post
β‘οΈ @JavaLearnZone
https://www.baeldung.com/okhttp-post
β‘οΈ @JavaLearnZone
Baeldung
A Quick Guide to Post Requests with OkHttp | Baeldung
Learn about the different features OkHttp has for POST requests.
π InvalidAlgorithmParameterException: Wrong IV Length
https://www.baeldung.com/java-invalidalgorithmparameter-exception
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-invalidalgorithmparameter-exception
β‘οΈ @JavaLearnZone
Baeldung
InvalidAlgorithmParameterException: Wrong IV Length | Baeldung
In this tutorial, we'll describe how to avoid InvalidAlgorithmParameterException when we generate the IV and use it in a cipher algorithm.
π Writing byte[] to a File in Java
https://www.baeldung.com/java-write-byte-array-file
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-write-byte-array-file
β‘οΈ @JavaLearnZone
Baeldung
Writing byte[] to a File in Java | Baeldung
When we need to write an array of bytes to a file in Java, there are a few options. We can use either the built-in APIs or a few common libraries.
π Configuring a Project to Exclude Certain Sonar Violations
https://www.baeldung.com/sonar-exclude-violations
β‘οΈ @JavaLearnZone
https://www.baeldung.com/sonar-exclude-violations
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Configuring a Project to Exclude Certain Sonar Violations | Baeldung
For some analyses, SonarQube needs some exclusions added to avoid false positives. We investigate a few ways to configure it.
π Set JAVA_HOME on Windows 7, 8, 10, Mac OS X, Linux
https://www.baeldung.com/java-home-on-windows-7-8-10-mac-os-x-linux
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-home-on-windows-7-8-10-mac-os-x-linux
β‘οΈ @JavaLearnZone
Baeldung
Set JAVA_HOME on Windows 7, 8, 10, Mac OS X, Linux | Baeldung
A quick look at how to set the JAVA_HOME variable on Windows, Mac OS X, and Linux.
π Find the Smallest Missing Integer in an Array
https://www.baeldung.com/java-smallest-missing-integer-in-array
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-smallest-missing-integer-in-array
β‘οΈ @JavaLearnZone
Baeldung
Find the Smallest Missing Integer in an Array
Learn how to find the Smallest Missing Integer in an Array.
π Join Array of Primitives with Separator in Java
https://www.baeldung.com/java-join-primitive-array
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-join-primitive-array
β‘οΈ @JavaLearnZone
Baeldung
Join Array of Primitives with Separator in Java | Baeldung
Learn how to join an array of primitives with a separator character or string in Java.
π WebSockets with the Play Framework and Akka
https://www.baeldung.com/akka-play-websockets
β‘οΈ @JavaLearnZone
https://www.baeldung.com/akka-play-websockets
β‘οΈ @JavaLearnZone
Baeldung
WebSockets with the Play Framework and Akka | Baeldung
WebSockets allow continuous communication between a client app and its server. This can be built with reactive streams in Akka and the Play Framework.
π Get the Key for a Value from a Java Map
https://www.baeldung.com/java-map-key-from-value
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-map-key-from-value
β‘οΈ @JavaLearnZone
Baeldung
Get the Key for a Value from a Java Map | Baeldung
Learn how to retrieve a key from a Java Map given the value