Why does the ActiveMQ message server require a JDK, not a JRE?

ActiveMQ Message broker requires Java JDK (not JRE for Java). Does anyone know why?

Thanks.

+4
source share
2 answers

I'm not sure what you really do. Although it is listed on the requirements page, at http://activemq.apache.org/support.html you will find

Which Java platform (e.g. Java SE 6 with JRE / JDK 1.6.0 or J2SE 5 with JRE / JDK 1.5.0)

In the "How to get help" section. Have you tried this with JRE instead of JDK?

+4
source

From ActiveMQ Document :

Environment: Java Runtime Environment (JRE) JRE 1.7 (1.6 for version <= 5.10.0) (JDK is required if you plan to recompile the source code)

The JRE is fine if you don't need to recompile ActiveMQ.

0
source

Source: https://habr.com/ru/post/1380279/


All Articles