Is Java middleware the same as a Java Virtual Machine?

Is Java middleware the same as a Java Virtual Machine?

Is Java middleware the same thing as a Java Virtual Machine? Or is a JVM a kind of middleware? Or neither of the above?

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to keep you informed on recent service-oriented architecture (SOA) and SOA-related topics such as integration, governance, Web services, Cloud and more.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSOA.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSOA.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Java middleware is definitely not the same as the JVM. The JVM is the piece of software responsible for translating Java bytecode (as compiled by a java compiler, like javac) into operations on the host platform. Basically, it is the interpreter, the Java runtime. It is the fundamental software required to run java at all. In the J2SDK it is "java" or "java.exe".

Java middleware is built to run on a JVM. Middleware sits in between the user and the application. Middleware gives the developer the capability of connecting the network with application components. An CORBA Object Request Broker or an EJB Server is a good example of middleware, because you deploy components and make them available to the network.


This was first published in September 2001