Some time back I have written one article Java Lambda Expression Explained with Example but it was easy for me to explore and Java 8 because I was using it in my project and I was allowed to install and use it. But in my current project, we are still using Java 8 and now I want to upgrade myself and learn Java 11 but can not install it.
And this happens with a lot of Java developers, Sometimes you want to learn and explore the latest version of Java e.g. Java 11 but you can not install it on your machine because you and your team is working on some older version e.g. Java 8, and you do not want to break your project.
Or suppose you are working on multiple projects some of which use Java 8 and some new projects are using Java 11. So in order to work on these projects parallelly, you will need to install multiple JDK on your machine and you should be able to switch between them.
What if there is a way and what if you are enabled to install multiple versions of Java and turn off and turn on them according to your need.
And this happens with a lot of Java developers, Sometimes you want to learn and explore the latest version of Java e.g. Java 11 but you can not install it on your machine because you and your team is working on some older version e.g. Java 8, and you do not want to break your project.
Or suppose you are working on multiple projects some of which use Java 8 and some new projects are using Java 11. So in order to work on these projects parallelly, you will need to install multiple JDK on your machine and you should be able to switch between them.
What if there is a way and what if you are enabled to install multiple versions of Java and turn off and turn on them according to your need.
Well there is a tool called SDKMan which allow us to do the same and according to the official website:
SDKMan! is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems. It provides a convenient Command Line Interface (CLI) and API for installing, switching, removing and listing Candidates.
Some points about SDKMan are as following:
- SDKMan is free to use and it is developed by the open-source community.
- SDKMan is written in bash and it only requires curl and zip/unzip programs to be present on your system.
- SDKMan can install around 29 Software Development Kits for the JVM such as Java, Groovy, Scala, Kotlin and Ceylon. Ant, Gradle, Grails, Maven, SBT, Spark, Spring Boot, Vert.x.
- We do not need to worry about setting the
_HOME
andPATH
environment variables because SDKMan handles it automatically.
Installing SDKMan
SDKMan can run on any UNIX based platforms such as Mac OSX, Linux, Cygwin, Solaris and FreeBSD and we can install it using following commands:Simply open a new terminal and enter:
$ curl -s "https://get.sdkman.io" | bash
$ source "$HOME/.sdkman/bin/sdkman-init.sh"
We can verify the installation using
sdk version
and sdk help
command will us complete help about the usage of sdk
command.Because SDKMan is written in bash and only requires curl and zip/unzip to be present on your system. You can install SDKMan on windows as well either by first installing Cygwin or Git Bash for Windows environment and then running above commands.
Installing Java Using SDKMan
SDKMan supports installations of 29 Software Development Kits for the JVM e.g. Java, Groovy, Scala, Kotlin and Ceylon, Grails, SBT, Spark, Spring Boot. We can get the complete list usingsdk list
command.SDKMan also helps us install build tools such as Ant, Maven and Gradle, You can read more about these build tools on Java Build Tools Comparisons: Ant vs Maven vs Gradle.
Command
sdk list java
will give us a list of java versions which we can install using SDKMan like below:$ sdk list java
================================================================================
Available Java Versions
================================================================================
13.ea.02-open 1.0.0-rc-10-grl
12.ea.26-open 1.0.0-rc-9-grl
11.0.2-zulu 1.0.0-rc-8-grl
11.0.2-open
11.0.1-zulufx
10.0.2-zulu
10.0.2-open
9.0.7-zulu
9.0.4-open
8.0.202-amzn
8.0.201-zulu
8.0.201-oracle
8.0.192-zulufx
7.0.181-zulu
1.0.0-rc-11-grl
================================================================================
+ - local version
* - installed
> - currently in use
================================================================================
Now Suppose we want to install OpenJDK version of Java v9 then we will execute below command in our terminal which will also update the PATH and JAVA_HOME variables:
$ sdk install java 9.0.4-open
The command will take some time to execute because it will be downloading the JDK on our machine and the command will output something like:
Downloading: java 9.0.4-open
In progress...
######################################################################## 100.0%
Repackaging Java 9.0.4-open...
Done repackaging...
Cleaning up residual files...
Installing: java 9.0.4-open
Done installing!
Setting java 9.0.4-open as default.
Now if we check our Java version and JAVA_HOME, we can see Java has been updated to 9.0.4
$ java -version
openjdk version "9.0.4"
OpenJDK Runtime Environment (build 9.0.4+11)
OpenJDK 64-Bit Server VM (build 9.0.4+11, mixed mode)
$ echo $JAVA_HOME
/Users/xbbnrde/.sdkman/candidates/java/current
We can follow the same process to install any version which we can see in the above list, let us suppose we want to install Java V11 version then we can execute the command:
$ sdk install java 11.0.2-open
Downloading: java 11.0.2-open
In progress...
######################################################################## 100.0%
Repackaging Java 11.0.2-open...
Done repackaging...
Cleaning up residual files...
Installing: java 11.0.2-open
Done installing!
Do you want java 11.0.2-open to be set as default? (Y/n): Y
Setting java 11.0.2-open as default.
Now if we again check our Java version and JAVA_HOME, we can see Java has been updated to 11.0.2:
$ java -version
openjdk version "11.0.2" 2019-01-15
OpenJDK Runtime Environment 18.9 (build 11.0.2+9)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
$ echo $JAVA_HOME
/Users/xbbnrde/.sdkman/candidates/java/current
Note: Some times you will require to close and reopen your terminal in order to see the changes.
Pointing SDKMan to your existing installed Java version
First, we need to find out where on your machine Java is installed. On my machine, it is installed in the folderjdk1.8.0_172.jdk
which lies under the folder /Library/Java/JavaVirtualMachines
, let's refer to this folder by <java-folder>
.The second thing we want to do is to set up a symbolic link between our installed
<java-folder>
and SDKMan, we can do it by running below commands:$ ln -s /Library/Java/JavaVirtualMachines/<java-folder> ~/.sdkman/candidates/java/<java-folder>
$ sudo ln -s /Library/Java/JavaVirtualMachin
es/<java-folder>/Contents/Home/bin ~/.sdkman/candidates/java/<java-folder>/bin
Now if we again execute
sdk list java
command, we will get:================================================================================
Available Java Versions
================================================================================
+ jdk1.8.0_172.jd 8.0.201-zulu
13.ea.02-open 8.0.201-oracle
12.ea.26-open 8.0.192-zulufx
11.0.2-zulu 7.0.181-zulu
> * 11.0.2-open 1.0.0-rc-12-grl
11.0.2.j9-adpt 1.0.0-rc-11-grl
11.0.2.hs-adpt 1.0.0-rc-10-grl
11.0.1-zulufx 1.0.0-rc-9-grl
10.0.2-zulu 1.0.0-rc-8-grl
10.0.2-open
9.0.7-zulu
* 9.0.4-open
8.0.202-amzn
8.0.202.j9-adpt
8.0.202.hs-adpt
================================================================================
+ - local version
* - installed
> - currently in use
================================================================================
We can clearly see that we have 3 JDK installed on our machine and JDK
11.0.2-open
is in use as of now. However, if we want to switch between them or install a new one we can do that very easily by using sdk use java <version_which_you_want_to_use>
like the following:Using Java 9
$ sdk use java 9.0.4-open
Using java version 9.0.4-open in this shell.
$ java -version
openjdk version "9.0.4"
OpenJDK Runtime Environment (build 9.0.4+11)
OpenJDK 64-Bit Server VM (build 9.0.4+11, mixed mode)
Using locally installed Java 8
$ sdk use java jdk1.8.0_172.jdk
Using java version jdk1.8.0_172.jdk in this shell.
Add caption
$ java -version
java version "1.8.0_172"
Java(TM) SE Runtime Environment (build 1.8.0_172-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.172-b11, mixed mode)
Using Java 11
$ sdk use java 11.0.2-open
Using java version 11.0.2-open in this shell.
$ java -version
openjdk version "11.0.2" 2019-01-15
OpenJDK Runtime Environment 18.9 (build 11.0.2+9)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
Usingsdk use
command will only enable you to use a specified version of JDK in the same terminal shell where you are executing thesdk use
command. And if you close the terminal and open it again you will be on the previously installed version.
But if you want to activate one version of JDK for all terminals and applications, you can use the command
sdk default java <your_version>
$ sdk default java 11.0.2-open
Default java version set to 11.0.2-open
$ java -version
openjdk version "11.0.2" 2019-01-15
OpenJDK Runtime Environment 18.9 (build 11.0.2+9)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
Or you can uninstall that version and install it again like below which will set that version to the current JDK.Uninstalling a JDK Version
In case you want to uninstall any JDK version e.g.,11.0.2-open
you can do that as follows:$ sdk uninstall java 11.0.2-open
And in case you want to install the uninstalled version back again, you can install it again and this time SDKMan will not download it because it already has that on your machine (unless you do not delete that manually).$ sdk install java 11.0.2-open
Found a previously downloaded java 11.0.2-open archive. Not downloading it again...
Installing: java 11.0.2-open
Done installing!
Do you want java 11.0.2-open to be set as default? (Y/n): y
Setting java 11.0.2-open as default.
Using SDMan installed JDK from IntelliJ IDEA
SDKMan installs all JDK under.sdkman/candidates/java/
folder and you can find .sdkman
folder in your home directory.After opening any Java project in IntelliJ, you can press
Command + :
to open the project structure window. In that window, you will need to click on New...
under Project SDK
section and there you can enter .sdkman/candidates/java/
in the browse window and can select any JDK from .sdkman/candidates/java/
.Because
.sdkman
is a hidden folder and in case you face some problem in finding it, you can always create a symbolic link to it with a non-hidden folder using below command.$ ln -s ~/.sdkman ~/sdkman
You can find the complete source code for my articles on this Github Repository and please feel free to provide your valuable feedback.