我从Talend exchange下载了一个自定义Talend组件。当我尝试使用此组件运行作业时,它给org.talend无法解析错误。该组件需要jar以及custComponent_message.properties,custComponent_begin.jet,custComponent_java.xml,custComponent.png文件。 custComponent_java.xml的CODEGENERATION部分看起来像这样
<CODEGENERATION>
<IMPORTS>
<IMPORT NAME="bcprovider" MODULE="bcprov-jdk16-143.jar" REQUIRED="true" />
<IMPORT NAME="bcpg" MODULE="bcpg-jdk16-143.jar" REQUIRED="true" />
<IMPORT NAME="PGPEncrypt" MODULE="PGPEncrypt.jar" REQUIRED="true" />
</IMPORTS>
</CODEGENERATION>
在custComponent_begin.javajet内部,这条线就是我得到org.talend无法解决的错误。
org.talend.pgp.PGPEncrypt.encryptFile(<%=source%>,<%=destination%>,<%=publicKey%>,<%=remove%>);
我在这里做错了什么?我是否还需要将罐子保存在其他位置?请帮忙
答案 0 :(得分:0)
此处介绍了安装自定义组件的过程:https://help.talend.com/display/KB/How+to+install+external+modules+in+the+Talend+products
实质上,您应该转到模块视图(窗口&gt;显示视图&gt; Talend&gt;模块),然后从那里下载并安装所需的模块。