我有一批用腻子运行。如何在 eclipse 中使用 java 运行它。可以在命令提示符下执行吗?
解决方案:
AWSBatch client = AWSBatchClientBuilder.standard().build();
SubmitJobRequest request = new SubmitJobRequest().withJobName("example").withJobQueue("HighPriority").withJobDefinition("sleep60");
SubmitJobResult response = client.submitJob(request);