nowui commented on issue #9221:
URL: https://github.com/apache/seatunnel/issues/9221#issuecomment-2826508980

   JSON配置是成功的, HOCON配置是报错的,麻烦帮我看看具体是什么原因导致的?
   
   JSON配置:
   `{
     "env": {
       "job.mode": "BATCH"
     },
     "source": [
       {
         "plugin_name": "Jdbc",
         "url": "jdbc:oracle:thin:@localhost:1521:helowin",
         "driver": "oracle.jdbc.OracleDriver",
         "user": "system",
         "password": "chengqin",
         "table_path": "CHENGQIN.JW_XMGL_JXXMBMYYDMB"
       }
     ],
     "sink": [
       {
         "plugin_name": "Console"
       }
     ]
   }`
   
   HOCON配置:
   `env {
     job.mode = "BATCH"
   }
   source{
       Jdbc {
           url = "jdbc:oracle:thin:@localhost:1521:helowin"
           driver = "oracle.jdbc.OracleDriver";
           user = "system"
           password = "chengqin"
           connection_check_timeout_sec = 100
           table_path = "CHENGQIN.JW_XMGL_JXXMBMYYDMB"
       }
   }
   
   transform {
   
   }
   
   sink {
       Console {}
   }
   `


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to