我正在从事 Mule 3.9 到 4.1.4 的迁移工作,我在 Mule 3.9 的 global-config.xml 中的 Groovy 脚本定义的全局函数中调用了 java 逻辑,并尝试使用以下方法在 Mule 4 中迁移它。
这是一个用例,其中 java 静态方法将 Map 作为参数,在 Dataweave 2.0 中,我没有看到 Dataweave 调用具有 Map 对象的 java 方法的任何示例。由于尝试了以下选项
选项 1:现有代码
class JsonUtil {
public static List<Map<String, String>> getTableAndColumns(Map<String, Object> inputJsonMap) {
List<Map<String, String>> list = null;
//Lot of big logic that to get list out of input Map object
return list;
}
}
在为选项 1 苦苦挣扎后浪费了很多时间,想通过将 JSON 字符串传递给 java 方法然后将其转换为 Map 来尝试选项 2,然后重用现有逻辑。但是没有运气,其他一些问题请参阅错误日志以获取更多详细信息。
请问有什么解决办法吗???
选项 2:现有代码
class JsonUtil {
public static List<Map<String, String>> getTableAndColumns(String inputJsonStr) {
//Using my own utility class to convert JSON string to Map
Map<String, Object> inputJsonMap = MyUtil.toMap(inputJsonStr, Map.class)
List<Map<String, String>> list = null;
//Lot of big logic that to get list out of input Map object
return list;
}
}
但是这里也有一些挑战,我将 Gson 库作为 APIKit mule 模块的一部分,我尝试在 pom 的包含列表中添加 Gson 依赖项,还添加了 sharedLibrary,仍然没有运气:(
错误日志:
An exception occurred while trying to execute function `com.mycompany.JsonUtil.getTableAndColumns(java.lang.String)`.
Caused by: java.lang.NoClassDefFoundError: com/google/gson/Gson
Unknown location
Trace:
at invoke (line: -1, column: -1)
at getTableAndColumns (line: -1, column: -1)
at main (line: 9, column: 16)" evaluating expression: "%dw 2.0
import java!com::mycompany::util::JsonUtil
output application/json
---
{
table_column: StringUtil::getTableAndColumns(vars.inputJson)
}