Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボニータを使用していますが、talend コネクタの出力を取得して保存する方法を知っています。
私の場合は非常に単純です。私のtalendジョブにはTjavaコンポーネントしかなく、コードは次のとおりです。
String foo = "bar"; System.out.printl(foo);
さて、ボニータでこの出力を取得するにはどうすればよいですか?
このコネクタの出力パラメータは、コネクタの構成ウィザードの最後のページ (「出力操作」) で取得できます。
参考までに、コネクタ出力のタイプは次のとおりです。
java.lang.String[][]
コネクタについて詳しく知りたい場合は、 https ://github.com/bonitasoft/bonita-connector-talend/blob/master/bonita-connector-talend-joblauncher-impl/ でその実装を確認できます。 src/main/java/org/bonitasoft/connectors/talend/JobLauncherConnector.java
お役に立てれば。
ポズ