NonStop Server for Java (NSJ) Programmer's Guide (NSJ 2.1+)

The Java class verifier, which verifies the validity of Java classes. Also, the command to
run the Java class verifier.
JCK
See Java Conformance Kit (JCK).
jdb
The Java Debugger, which helps you find and fix errors in Java programs. Also, the
command to run the Java Debugger. jdb uses the Java Debugger API.
JDBC
The Java standard for access to relational databases such as SQL/MP or SQL/MX. JDBC
is a product name, not an abbreviation, but is generally considered to represent Java
Database Connectivity.
JDK
See Java Development Kit (JDK).
jeeves
See Java Web Server.
JIT compiler
See Just-in-Time (JIT) compiler.
JNDI
See Java Naming and Directory Interface (JNDI).
JNI
See Java Native Interface (JNI).
jre
The Java run-time environment, which executes Java bytecode. Also, the command to
run the Java run-time environment.
JTA
See Java Transaction API (JTA).
JTS
See Java Transaction Service (JTS).
jts.Current
A JTS interface that lets you define transaction boundaries. NonStop Java includes an
implementation of jts.Current.
Just-in-Time (JIT) compiler
A compiler that is triggered when the JVM attempts to run a method. The JIT Compiler
compiles all the bytecode for the given method into native machine code, which is then
used whenever the method is invoked.
JVM