Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oracle JDK and OpenJDK in production environment

Tags:

java

openjdk

Is it possible to change from Oracle JDK to OpenJDK in production environment specially for JAVA EE applications?

like image 872
Ashkan Rahmany Avatar asked Oct 02 '22 07:10

Ashkan Rahmany


1 Answers

Theoretically Yes. However in practice, There are many projects that work fine on Oracle JDK but not on OpenJDK and vice versa.

Since even a simple patch update of your JDK may lead to problems in your system, you have to thoroughly test the compatibility in a test environment first before moving in production.

like image 179
Chamil Avatar answered Oct 13 '22 10:10

Chamil