Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

For which surprises do I have to prepare myself if I switch from Sun JDK to OpenJDK?

Tags:

java

openjdk

If I'd switch from Sun JDK to OpenJDK which surprises do I have to prepare myself for?

What does frequently go wrong and how difficult can this be?

Of course, each and every application can have its individual problems, but I'm looking for classes of problems, something many people already have struggled with when switching JDKs.

like image 674
Daniel Rikowski Avatar asked Feb 10 '10 12:02

Daniel Rikowski


People also ask

What is the difference between JDK and OpenJDK?

The biggest difference between OpenJDK and Oracle JDK is licensing. OpenJDK is completely open source Java with a GNU General Public License. Oracle JDK requires a commercial license under Oracle Binary Code License Agreement. But there are many other differences within support and cost, too.

Which is better Oracle JDK or OpenJDK?

There's no real technical difference between the two, since the build process for Oracle JDK is based on that of OpenJDK. When it comes to performance, Oracle's is much better regarding responsiveness and JVM performance. It puts more focus on stability because of the importance it gives to its enterprise customers.

Is Red Hat OpenJDK free?

The Red Hat® build of OpenJDK is a free and open source implementation of the Java Platform, Standard Edition (Java SE). It is an alternative that will allow your organization to stabilize and standardize your Java environments for years to come with little to no transition effort.

What is OpenJDK used for?

OpenJDK is an open source implementation of the Java Standard Edition (Java SE) and Java Development Kit (JDK). The OpenJDK source code is the basis for these commercial Java products.


2 Answers

It is unlikely that anything will go wrong with OpenJDK. It is considered 100% compatible by now. But I think it is good to know what parts had to be rewritten and therefore are not using the same code as the SunJDK.

The Wikipedia entry has a good overview of this:

As of May 2008, the only part of the Class library that remains proprietary and closed-source (4% as of May 2007 for OpenJDK 7, and less than 1% as of May 2008 and OpenJDK 6) is the SNMP implementation.

Since the first May 2007 release, Sun Microsystems, with the help of the community, has released as free and open-source software or replaced with free and open-source alternatives almost all the encumbered code:

  • All the audio engine code, including the software synthesizer, has been released as Open-source. The closed-source software synthesizer has been replaced by a new synthesizer developed specifically for OpenJDK called Gervill,

  • All cryptography classes used in the Class library have been released as Open-source,

  • The code that scales and rasterizes fonts has been replaced by FreeType

  • The native color management system has been replaced by LittleCMS. There is a pluggable layer in the JDK, so that the commercial version can use the old color management system and OpenJDK can use LittleCMS.

  • The anti-aliasing graphics rasterizer code has been replaced by the Open-sourced Pisces renderer used in the phoneME project. This code is fully functional, but still needs some performance enhancements,

  • The JavaScript plugin has been open-sourced (the Rhino JavaScript engine itself was open-sourced from the beginning).

like image 192
Bani Avatar answered Sep 28 '22 22:09

Bani


As I know fonts will look garbled, Sun had to remove original ones from OpenJDK since they are not 'open source' and JVM will use some default which are not so nice...

like image 22
ante.sabo Avatar answered Sep 28 '22 22:09

ante.sabo