9.4.5.2.1 Coding a Custom Formatter in Java
The preceding examples show a JMS handler and a file output handler using the same formatter (com.mycompany.MyFormatter
). The following is an example of how this formatter may be implemented.
Example 9-14 Custom Formatting Implementation
package com.mycompany.MyFormatter; import oracle.goldengate.datasource.DsOperation; import oracle.goldengate.datasource.DsTransaction; import oracle.goldengate.datasource.format.DsFormatterAdapter; import oracle.goldengate.datasource.meta.ColumnMetaData; import oracle.goldengate.datasource.meta.DsMetaData; import oracle.goldengate.datasource.meta.TableMetaData; import java.io.PrintWriter; public class MyFormatter extends DsFormatterAdapter {
public MyFormatter() { } @Override public void formatTx(DsTransaction tx,
DsMetaData meta, PrintWriter out)
{
out.print("Transaction: " ); out.print("numOps=\'" + tx.getSize() + "\' " ); out.println("ts=\'" + tx.getStartTxTimeAsString() + "\'"); for(DsOperation op: tx.getOperations()) { TableName currTable = op.getTableName(); TableMetaData tMeta = dbMeta.getTableMetaData(currTable); String opType = op.getOperationType().toString(); String table = tMeta.getTableName().getFullName(); out.println(opType + " on table \"" + table + "\":" ); int colNum = 0; for(DsColumn col: op.getColumns()) {
ColumnMetaData cMeta = tMeta.getColumnMetaData( colNum++ ); out.println( cMeta.getColumnName() + " = " + col.getAfterValue() ); }
} @Override public void formatOp(DsTransaction tx,
DsOperation op, TableMetaData tMeta, PrintWriter out)
{
// not used...
}
}
The formatter defines methods for either formatting complete transactions (after they are committed) or individual operations (as they are received, before the commit). If the formatter is in operation mode, then formatOp
(...) is called; otherwise, formatTx
(...) is called at transaction commit.
To compile and use this custom formatter, include the Oracle GoldenGate for Java JARs in the classpath and place the compiled .class
files in gg_install_dir
/dirprm
:
javac -d gg_install_dir/
dirprm
-classpath ggjava/ggjava.jar MyFormatter.java
The resulting class files are located in resources/classes
(in correct package structure):
gg_install_dir
/dirprm/com/mycompany/MyFormatter.class
Alternatively, the custom classes can be put into a JAR; in this case, either include the JAR file in the JVM classpath using the user exit properties (using java.class.path
in the jvm.bootoptions
property), or by setting the Java application properties file to include your custom JAR:
# set properties on 'one' gg.handler.one.type=file gg.handler.one.format=com.mycompany.MyFormatter gg.handler.one.file=output.xml gg.classpath=/path/to/my.jar,/path/to/directory/of/jars/*
Parent topic: Custom Formatting