This project template provides a starting point for writing a Transformer 6 module using the now deprecated Java Transformer Module (JTM) API com.caplin.transformer.module.
To create a Transformer 7 module, use the Caplin JTM Template.
This template is a Gradle project. To avoid compatibility issues between the version of Gradle required by the project and the version of Gradle installed on your system, always run the project's Gradle tasks using the Gradle Wrapper from the root of the project: ./gradlew task
Note: the Gradle Wrapper requires an Internet connection. For more information, see Executing a build with the Wrapper in the Gradle documentation.
Follow the instructions below to create a new Transformer module project based on the Legacy JTM Template.
-
Clone, or download and extract the latest version of the Caplin Project Templates repository:
-
Clone:
$ git clone https://github.com/caplin/project-templates.git
-
Download:
$ wget http://github.com/caplin/project-templates/archive/master.zip $ unzip -qoa master.zip
-
-
Copy the template directory
jtm-legacy-template
and rename it to the name of your new project (for example, MyTransformerModule):
```
$ cp -r ./jtm-legacy-template ~/src/MyTransformerModule
```
-
Edit the file
~/src/MyTransformerModule/settings.gradle
, and change the value of therootProject.name
variable to the name of your project (MyTransformerModule). When you later export your project as an blade, the project name will be used as the name for the blade. -
If you have a Caplin website account and Internet access to https://repository.caplin.com, follow the steps below to enable automatic downloading of this project's Caplin dependencies:
-
In your
~/.gradle/gradle.properties
file (create it if it does not exist), add the following lines, replacing<username>
and<password>
with your Caplin credentials:caplinNexusUser=<username> caplinNexusSecret=<password>
-
-
If you don't have a Caplin website account and Internet access to https://repository.caplin.com, follow the steps below to manage this project's Caplin dependencies manually:
-
In this project's
build.gradle
file, comment out themaven
block for https://repository.caplin.com:/*maven { credentials { username "$caplinNexusUser" password "$caplinNexusSecret" } url "https://repository.caplin.com" }*/
-
In this project's
build.gradle
file, uncomment theimplementation fileTree(...)
line in thedependencies
block:dependencies { implementation fileTree(dir: 'lib', include: '*.jar') ... }
-
Copy the following Caplin libraries to this project's
lib
directory:- Transformer 7.1.x:
TransformerModule-version.jar
(found in thelib/java
directory inside the Transformer installation kit)
- Transformer 7.1.x:
-
Follow the instructions below to import your new adapter project into Eclipse or IntelliJ IDEA.
These instructions require the Buildship Gradle Integration plugin. To install the plugin, click Help > Eclipse Marketplace and search for Buildship
.
To import your project into Eclipse, follow the steps below:
-
In Eclipse, click File > Import. The Import dialog appears.
-
Click Existing Gradle Project. The Import Gradle Project dialog appears.
-
Under Project location, deselect Use default location.
-
In the Location field, select your adapter's project directory:
~/src/MyTransformerModule
-
Click Finish.
To import your project into IntelliJ IDEA, follow the steps below:
-
Click File > New > Project from existing sources
-
Select the project's Gradle build file:
~/src/MyTransformerModule/build.gradle
A Java Transformer Module (JTM) can be run only within Transformer's embedded JVM; it cannot be run within your IDE. To run and debug your JTM during development, deploy your JTM to the Deployment Framework (DFW) that hosts your Transformer, and then use remote debugging to monitor its execution.
To setup remote debugging:
-
In the Deployment Framework file
global_config/overrides/servers/Transformer/etc/java.conf
, set the configuration itemTRANSFORMER_JVM_DEBUGGER_PORT
to a valid port number.Note: if your Transformer is on a remote server, check that the server's firewall does not block the port number you assign to
TRANSFORMER_JVM_DEBUGGER_PORT
. -
From the root of your DFW, run the command
./dfw start Transformer
to start (or restart) Transformer. -
In your IDE, create a 'remote debugging' configuration for your project.
-
Set the host to Transformer's network address.
-
Set the port to the number you assigned to
TRANSFORMER_JVM_DEBUGGER_PORT
.
-
To deploy your JTM:
-
From the root of your project, run the command
./gradlew assemble
. This command packages your JTM within a new service blade under thebuild
directory. -
Deploy the service blade to the DFW that hosts your Transformer. For instructions on how to deploy an adapter blade to a DFW, see Deploy a custom blade.
Tip: If you are deploying the service blade to a local DFW, then follow this tip to skip this step in future. Replace the JAR file
dfw-root/active_blades/your_module/Transformer/lib/java/your_module.jar
with a symlink to the JAR file generated by Gradle in thebuild/distributions
directory. -
From the root of the DFW, run
./dfw start Transformer
to start (or restart) Transformer.
Follow the steps below to deploy your service blade:
-
From the root of your project, run the command
./gradlew assemble
. This command packages your JTM within a new service blade under thebuild
directory. -
Deploy the service blade to each DFW in your deployment infrastructue. For instructions on how to deploy an adapter blade to a DFW, see Deploy a custom blade.
To report an issue with the template, please contact Caplin Support or raise an issue on GitHub.