Core Java

Multiple Java JDK(s), on your MacOSX environment

Yet again, a small tip towards configuring your Java development environment on a Mac (OSX 10.8.x+). If you are really starting right now,  I recommend you read  one of my previous posts,  a quick and clean (I suppose) way to set up your environment variables and start your Java coding. My tip for today is about easily switching from one JDK version to another on your command line. Currently at work I am forced to compile towards JDK6, at the same time I want to use as much as possible JDK7 on my pet projects and ‘force’ my tools (namely IDE(s)) to use the related jvm.

Last but not least, since we are getting closer on the JDK8 release, it is really interesting to experiment a bit on the new features, through the available early snapshot releases, provided by Oracle.
 
I have modified my ~/.profile  adding the following lines. Of course versions and paths on certain JDK(s) depend on the releases you have installed, by downloading the related dmg(s) and running the setup package/installer.

#export CUSTOM HOME(S) variables

#last JDK 6 by Apple
export JAVA_6_HOME=/System/Library/Frameworks/JavaVM.framework/Home
#latest JDK 7 by Oracle
export JAVA_7_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_13.jdk/Contents/Home
#latest preview JDK 8 by Oracle
export JAVA_8_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home

#default JDK is  7
export JAVA_HOME=$JAVA_7_HOME

What I really did is to store and export 3 different environment variables,one fore each flavor of the JDK I currently have installed. Then I select the one to be the default (that is JDK7)- see inline comment. At the same time, I am actually creating 3 different alias commands to update the value of the JAVA _HOME  variable depending on the jdk I wish to have ‘loaded’ in my current shell. So when I open my terminal my default java-vm setting is set to JDK7

If I want to switch on jdk6 or jdk8 I just make use of the alias commands (just type the name of the alias (e.g papo/> java6)  – and the variable is being updated – accordingly.

Note 1: I still preserve the symbolic link as, configured by the system. Meaning, if you do a ‘which java’ on your command line, you will get a ‘ /usr/bin/java ‘  sym link. Which is already loaded in your $PATH. The sym link as shown points to ‘/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java’ . Some, may argue that you could update this specific configuration but, I don’t find it problematic.

Note 2: There are lots of people asking how to force Eclipse, to use a very specific JDK version, especially when they have installed different JDK(s) on their Mac. Eventually I am using the eclipse.ini way (go to the Eclipse.app -> right click -> Show Package Contents-> Contents/MacOS/eclipse.ini). Add a line like the following – before the -vmargs section – in my case I force eclipse to use the latest version of JDK7.

-vm
/Library/Java/JavaVirtualMachines/jdk1.7.0_13.jdk/Contents/Home/bin/

 

Reference: Multiple Java JDK(s), on your MacOSX environment from our JCG partner Paris Apostolopoulos at the Papo’s log blog.

Paris Apostolopoulos

Paris is a senior software engineer focusing on J2EE development, loves Business process modelling and is keen on software quality challenges. He is passionate about Java and Java communities. He is a co-founder and administrator of the first Java User Group in greece(JHUG.gr) and occasional speaker on meet-ups and seminars and regular blogger. For his contributions and involvement on the Java community he has been awarded the title of Java Champion in 2007 by Sun Microsystems.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Gene De Lisa
10 years ago

There is also java_home.

export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)

javapapo
10 years ago

Yes true, unfortunately this post is not updated . I have updated the notes on my blog . Here is the link http://javapapo.blogspot.gr/2013/12/setup-your-java-development-environment.html

Jose
2 years ago

Thank you for the detailed overview.

Back to top button