有人知道此错误的含义吗,我有一个简单的左联接,该联接在终端中运行良好,但是在通过oozie工作流程运行时抛出此错误。
public MyObject(HashMap<String, String> props) {
for (Map.Entry<String,String> entry : props.entrySet()) {
Field field = this.getClass().getField(entry.getKey());
field.set(this, entry.getValue());
}
}