例えば、
Javaファイルで、
String[] arrayTest= {"a", "b", "c"};
String strTest = "";
for (String test: arrayTest) {
strTest = strTest + ", " + test;
}
strTest = strTest.substring(1);
xml ファイルで、変数を次のように IN 句に渡します。
Where test in (#strTest#)
しかし、うまくいきませんでした。