JDK(Java Development Kit)指的是Java开发工具集。JDK是整个Java的核心,包括了Java基础类库、Java运行环境(JRE)和Java开发工具。是做Java开发必须要安装的。JRE(Java Runtime Environment)指的是Java运行时环境。Java程序运行时必需要JRE的支持。如果系统只安装JRE的话,则意味着系统可以跑任何Java程序,但不能做Java开发。
JDK 和 JRE区别:包含关系:JDK中包含JRE。应用区别: 如果只是要运行Java程序,则只需安装JRE,无需安装JRE。 如果要做Java开发则必须安装JDK。
注意,在安装tomcat时需要安装JDK而不能仅安装JRE,下面是tomcat产品包中RUNNING.TXT中的描述:
(1) Download and Install a Java SE Runtime Environment (JRE)
(1.1) Download a Java SE Runtime Environment (JRE), release version 8 or later, from
http://www.oracle.com/technetwork/java/javase/downloads/index.html
(1.2) Install the JRE according to the instructions included with the release.
You may also use a full Java Development Kit (JDK) rather than just a JRE.