在ODI中执行时,Jython脚本不起作用

时间:2019-08-23 07:49:42

标签: oracle oracle-data-integrator

我有一个ODI作业,该程序具有3个任务。这些任务使用Jython技术进行编码。当我在PC上独立使用Jython执行这些脚本时,它们运行良好,但是当我从ODI菜单运行这些脚本时,它们什么也没做。

执行被标记为OK,并且在任何窗口中都看不到任何错误日志。

我检查了代码是否可以在jython独立环境下工作。尝试使用“ /”和“ \”路径,我的文件夹(在开发模式下使用Windows)具有所有可用权限。


import React, { Component, Fragment } from "react";
import Select from "react-select";

export const flavourOptions = [
  { value: "vanilla", label: "Vanilla", rating: "safe" },
  { value: "chocolate", label: "Chocolate", rating: "good" },
  { value: "strawberry", label: "Strawberry", rating: "wild" },
  { value: "salted-caramel", label: "Salted Caramel", rating: "crazy" }
];

export default class SampleDropdown extends Component {
  state = {
    isClearable: true,
    isDisabled: false,
    isLoading: false,
    isRtl: false,
    isSearchable: true
  };
  componentDidMount() {
    document.getElementById("translate").focus();
  }

  render() {
    const {
      isClearable,
      isSearchable,
      isDisabled,
      isLoading,
      isRtl
    } = this.state;
    return (
      <Fragment>
        <Select
          className="basic-single"
          classNamePrefix="select"
          defaultValue={flavourOptions[0]}
          isDisabled={isDisabled}
          isLoading={isLoading}
          isClearable={isClearable}
          isRtl={isRtl}
          isSearchable={isSearchable}
          name="color"
          options={flavourOptions}
          id="translate"
        />
      </Fragment>
    );
  }
}

我希望文件成功移动。 (这些名称正确且之前没有移动过)。我希望也能看到任何日志或错误信息。

谢谢。

0 个答案:

没有答案