0%

ETL报错:

Unexpected problem reading shared objects from XML file : null

当读共享文件时发生错误(继续加载 报kettle新建转换 时,“读取共享对象时发生一个严重错误”

“Unexpected problem reading shared objects from XML file : null”…

保存ktr,kjb时弹出错误提示 :“Unable to save shared ojects“

”Unexpected problem reading shared objects from XML file :“

Nginx常用配置 常用代理Server配置 server { listen 80; //监听的本地端口 server_name localhost; location /api1/ { proxy_pass http://localhost:8080; } # http://localhost/api1/xxx -> http://localhost:8080/api1/xxx; location /api2/ { proxy_pass http://localhost:8080/; } # http://localhost/api2/xxx -> http://localhost:8080/xxx; location /api3 { proxy_pass http://localhost:8080; } # http://localhost/api3/xxx -> http://localhost:8080/api3/xxx; location /api4 { proxy_pass