我正在使用 Weblogic 集成框架。在使用 .xq 文件将一种 XML 格式转换为另一种格式时,我想应用一些用自定义 Java 类编写的逻辑。
例如,XML1 有标签:<UnitCode>XYZ</UnitCode>
自定义 Java 类:
public class unitcodemapper{
public static String getMappedUnitCode(String unitCode){
if(unitCode=="XYZ")
return <<value from DB table>>
else
return unitCode;
}
}
XML2 将有一个标签:<UnitCode>unitcodemapper.getMappedUnitCode(XML1/UnitCode)</UnitCode>
我找不到任何文档或示例来执行此操作。有人可以帮助了解如何做到这一点吗?