Java support in CICS
CICS® provides the tools and runtime environment to develop and run Java™ enterprise applications in a Java Virtual Machine (JVM) that is under the control of a CICS region. Java applications can interact with CICS services and applications written in other languages.
Java on z/OS® provides comprehensive support for running Java applications. CICS uses the IBM® 64-bit SDK for z/OS, Java Technology Edition, Version 7, Version 7 Release 1 or Version 8. The SDK contains a Java Runtime Environment that supports the full set of Java APIs and a set of development tools. To help increase general purpose processor productivity and contribute to lowering the overall cost of computing for z/OS Java technology-based applications, special processors are available in certain z Systems® hardware. The IBM zEnterprise® Application Assist Processor (zAAP) and the IBM z Systems Integrated Information Processor (zIIP) can provide additional processor capacity to run eligible Java workloads, including Java workloads in CICS. You can find more information about Java on the z/OS platform and download the 64-bit version of the SDK at Java Standard Edition Products on z/OS.
CICS provides a JVM server runtime environment for Java application development. You can develop applications using the CICS Explorer® SDK, Maven modules, or Gradle modules.
JVM server
The JVM server is the strategic runtime environment for Java applications in CICS. A JVM server can handle many concurrent requests from different Java applications in a single JVM. Use of a JVM server reduces the number of JVMs that are required to run Java applications in a CICS region. To use a JVM server, Java applications must be threadsafe and must comply with the OSGi specification. JVM server provides the following benefits:
- Eligible Java workloads can run on zAAP and zIIP processors, reducing the cost of transactions.
- Different types of work such as threadsafe Java programs and web services, can run in a JVM server.
- Application life cycle can be managed in the OSGi framework, without restarting the JVM server.
- Java applications that are packaged using OSGi can be ported more easily between CICS and other platforms.
- Web applications can be deployed in to the Liberty JVM server.
CICS Explorer SDK
CICS Explorer is a freely available download for Eclipse-based Integrated Development Environments (IDEs). The CICS SDK for Java that is included with CICS Explorer provides support for developing and deploying applications that comply with the OSGi Service Platform specification. The OSGi Service Platform provides a mechanism for developing applications using a component model and deploying those applications into a framework as OSGi bundles. An OSGi bundle is the unit of deployment for an application component and contains version control information, dependencies, and application code. The main benefit of OSGi is that you can create applications from reusable components that are accessed only though well-defined interfaces called OSGi services. You can also manage the life cycle and dependencies of Java applications in a granular way.
The CICS SDK for Java allows development of Java applications for any supported release of CICS. The SDK includes the Java CICS (JCICS) library of classes to access CICS services along with examples to get started with developing applications for CICS. You can also use the tool to convert existing Java applications to OSGi.
The CICS SDK for web and JSP that is included as an option with CICS Explorer supports the packaging of Liberty applications in to CICS bundles that can be deployed in CICS.
Maven and Gradle modules
- Easy management of dependencies. Java developers can easily add the required versions of the Java CICS APIs and the CICS annotation processor to the Java dependencies with just a few lines of configurations.
- More freedom when choosing the development environment. Maven and Gradle support most Java IDEs, such as Eclipse, IntelliJ IDEA, and Visual Studio Code. Java developers can write application code in a familiar IDE.
- Better integration into a build toolchain. Maven and Gradle are, in nature, build tools, and they integrate smoothly with other automation tools such as Jenkins and Travis CI. The dependencies defined through Maven or Gradle are integrated into the build toolchain automatically.
The following artifacts are available on Maven Central:
- The Java CICS class library (JCICS)
- Provides the EXEC CICS API support for Java applications in CICS TS.
- The CICS annotations library and the CICS annotation processor
- Provides support that enables CICS programs to invoke Java applications in a Liberty JVM server.
- A bill of materials (BOM)
- Defines the versions of the other artifacts to ensure that they are at the same CICS TS level.
For more information about the artifacts and how to use them, see Developing applications using other tools.
- org.osgi for OSGi framework
- net.wasdev.maven.tools.targets for Liberty APIs, SPIs, and Java EE specifications
You can either use these artifacts directly from Maven Central, or have them referenced as allowlisted dependencies from an enterprise repository by using repository managers such as Artifactory or Nexus.