我已经创建了弹出批处理作业,并且为了启动它们,我们已经提供了将在url中传递作业名称的rest客户端。 例:http://localhost:8080/ProjectName/launcher/jobs/updateFeedsJob 此URL将启动updateFeedsJob作业。 现在的问题是在点击网址后,同样的工作正在运行多个 时间(5),在tomcat7中部署相同的unix中每分钟一次 而在当地它运行良好。 此外,整个工作将在4-5分钟左右完成。 我已经google了很多但没有适当的解决方案。
任何建议。
代码:
启动器类:
@Path("/launcher")
public class LaunchController {
static String[] springConfig = { "spring/batch/jobs/job-update*.xml" };
@GET
@Path("/semjobs/{jobname}")
@Produces("application/xml")
public Response getScmJobs(@PathParam("jobname") String jobname) {
{
JobDetails jobdetails = new JobDetails();
ApplicationContext context = new ClassPathXmlApplicationContext(springConfig);
JobLauncher jobLauncher = (JobLauncher) context.getBean("jobLauncher");
String category = EMPTY_STRING;
jobdetails.setJobname(jobname);
Job job = (Job) context.getBean(jobname);
JobExecution executionall = null;
String inputpath = EMPTY_STRING;
try {
inputpath = loadPropertiesFile(jobname);
} catch (Exception e) {
LOGGER.error("Error occured while loading the properties file -> " + e);
}
executionall = jobLauncher.run(job, new JobParametersBuilder().addString("inputFile", inputpath).addDate("date", new Date()).toJobParameters());
if (executionall != null) {
jobdetails.setJobstatus(executionall.getExitStatus().getExitCode());
jobdetails.setJobid(executionall.getJobId());
}
} catch (Exception e) {
LOGGER.error("Error occured while launching the job -> " + e);
}
return Response.status(200).entity(jobdetails).build();
}
Spring批处理作业常见于flatfileitemreader(从csv读取),处理器(更新adwords api feed详细信息,此步骤大约需要40秒,对于csv文件中有大约40条记录的每条记录)和自定义编写器是更新数据库中的记录。
WEB.XML
<web-app>
<display-name>Archetype Created Web Application</display-name>
<!-- Auto scan REST service -->
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
<servlet>
<servlet-name>resteasy-servlet</servlet-name>
<servlet-class>
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>resteasy-servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
答案 0 :(得分:0)
我可能有一个解决方案 - 但它不合适。
您可以将作业Listerine添加到结束您的应用程序的主要作业
您可以在该列表器的作业后方法中调用System.Exit(0)。