Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are major difference of running my application in a Server JRE vs JRE? [closed]

Tags:

java

jvm

I have seen in oracle website there are two types jre download.

What are the differences of running my application in server JRE vs JRE and are there any limitations imposed upon the application of choosing one runtime environment over another?

like image 864
Sasikumar Murugesan Avatar asked Aug 03 '13 18:08

Sasikumar Murugesan


People also ask

What is the difference between JRE and server JRE?

The Server JRE includes tools for JVM monitoring and tools commonly required for server applications, but does not include browser integration (the Java plug-in). So the difference is incredibly small.

Do we need JRE to run Java?

You need a JRE but not the JDK. The JRE is the java runtime environment and java code cannot be executed without it. The . jar is a compiled java file can and this needs the java runtime environment to be run.

What is the purpose of JRE?

The JRE is the underlying technology that communicates between the Java program and the operating system. It acts as a translator and facilitator, providing all the resources so that once you write Java software, it runs on any operating system without further modifications.

What is Java SDK and JRE?

Java SDK is a set of programming tools for developing Java applications. JRE provides the minimum requirements for executing a Java application.


1 Answers

Read the documentation:

The Server JRE is a runtime environment specifically targeted for deploying Java in server environments and it is available for 64-bit Linux, Solaris and Windows platforms.

The Server JRE includes tools for JVM monitoring and tools commonly required for server applications, but does not include browser integration (the Java plug-in).

like image 107
AllTooSir Avatar answered Oct 15 '22 01:10

AllTooSir