Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Many java applications that use shell scripts to configure their environment use the JAVA_HOME environment variable to start the correct version of java, locate JRE jars, etc.

On OSX 10.6, the following paths seem to be valid for this variable

/Library/Java/Home
/System/Library/Frameworks/JavaVM.framework/Home
/System/Library/Frameworks/JavaVM.framework/Versions/Current

Some of these are symlinks to the actual current VM (as defined in the Java Preference pane), but which one should be used - or is it OK to use any of them?

share|improve this question

4 Answers

up vote 197 down vote accepted

Does Snow Leopard still have /usr/libexec/java_home? On 10.5, I just set JAVA_HOME to the output of that command, which should give you the Java path specified in your Java preferences. Here's a snippet from my .bashrc file, which sets this variable:

export JAVA_HOME=$(/usr/libexec/java_home)

I haven't experienced any problems with that technique.

(Occasionally I do have to change the value of JAVA_HOME to an earlier version of Java. For example, one program I'm maintaining requires 32-bit Java 5 on OS X, so when using that program, I set JAVA_HOME to /System/Library/Frameworks/JavaVM.framework/Versions/1.5/Home.)

share|improve this answer
Snow Leopard does still have /usr/libexec/java_home. Thanks – Robert Christie Aug 28 '09 at 20:40
3  
So does Lion!!! – Pablo Santa Cruz Mar 22 '12 at 20:30
3  
Mountain Lion has it too – sghill Aug 13 '12 at 15:26
what is this "/usr/libexec/java_home" ? – drlobo Apr 5 at 22:40
@drlobo: It's a tool for figuring out where JAVA_HOME is that ships with Macs. – mipadi Apr 5 at 23:01

I tend to use /Library/Java/Home. The way the preferences pane works this should be up to date with your preferred version.

share|improve this answer

Also, it`s interesting to set your PATH to reflect the JDK. After adding JAVA_HOME (which can be done with the example cited by 'mipadi'):

export JAVA_HOME=$(/usr/libexec/java_home)

Add also in ~/.profile:

export PATH=${JAVA_HOME}/bin:$PATH

P.S.: For OSX, I generally use .profile in the HOME dir instead of .bashrc

share|improve this answer

Nowadays Java seems to be installed in /Library/Java/JavaVirtualMachines

share|improve this answer
On OS X 10.7+ thats the new default folder: wiki.eclipse.org/Eclipse.ini – lucasarruda May 10 at 22:35
1  

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.