我是Spring Batch Framework的初学者,我发现来自http://www.javabeat.net/introduction-to-spring-batch/的易于理解的代码可用作学习工具。我在Eclipse中设置了我的项目,类似于页面中的代码,它看起来像这样:
并且代码使用CommandLineJobRunner执行fileWritingJob.xml中的作业,如下所示:
package net.javabeat.articles.spring.batch.examples.filewriter;
import org.springframework.batch.core.launch.support.CommandLineJobRunner;
public class Main {
public static void main(String[] args) throws Exception {
CommandLineJobRunner.main(new String[]{"fileWritingJob.xml", "LayeredMultiThreadJobTest"});
}
}
它按预期运行没有问题。但是当我将fileWritingJob.xml移动到另一个目录(仍在项目目录下)时,它不会运行。我尝试使用相对路径和完整路径在CommandLineJobRunner方法中更改了文件名参数,但它仍然没有运行。例如,如果在项目目录(与config相同的级别)下创建一个名为jobs的目录并将xml放在那里,那么将文件路径传递给CommandLineJobRunner,如下所示:
CommandLineJobRunner.main(new String[]{"/jobs/fileWritingJob.xml", "LayeredMultiThreadJobTest"});
或者
CommandLineJobRunner.main(new String[]{"../jobs/fileWritingJob.xml", "LayeredMultiThreadJobTest"});
它没有用。
但是当我尝试在config目录下创建一个subdir并将fileWritingJob.xml放在那里时,就像这样
CommandLineJobRunner.main(new String[]{"configsubdir/fileWritingJob.xml", "LayeredMultiThreadJobTest"});
它运行。就好像CommandLineJobRunner只检查config目录一样。
更新:在挖掘了一下之后,感谢Michael Minella关于ClassPathXmlApplicationContext的建议,我能够将xml放在我想要的任何地方。我还咨询了此页面Spring cannot find bean xml configuration file when it does exist和http://www.mkyong.com/spring-batch/spring-batch-hello-world-example/
所以我现在所做的是使用ClassPathXmlApplicationContextand声明一个新的上下文,然后使用job launcher运行它,方法如下:
public static void main(String[] args) {
String[] springConfig =
{
"file:/path/to/xml/file"
};
ApplicationContext context = new ClassPathXmlApplicationContext(springConfig);
JobLauncher jobLauncher = (JobLauncher) context.getBean("jobLauncher");
Job job = (Job) context.getBean("JobName");
try {
JobExecution execution = jobLauncher.run(job, new JobParameters());
System.out.println("Exit Status : " + execution.getStatus());
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("Done");
}
非常感谢您的所有投入!
答案 0 :(得分:2)
关于将基于xml的作业定义的路径传递给CommandLineJobRunner
时发生的事情的一些细节。我们所做的就是将该字符串传递给ClassPathXmlApplicationContext
的构造函数。因此,期望作业定义的xml文件位于应用程序的类路径上。我无法从你的项目屏幕截图中看出你是如何构建项目所以我不确定config目录是否在你的类路径上。但是,如果它位于类路径上并且位于它的根目录下,我希望您能够将路径作为"/config/fileWritingJob.xml"
传递给fileWritingJob.xml。
调试此类问题时,此类的源可能会有所帮助。您可以在此处找到CommandLineJobRunner
的源代码:https://github.com/spring-projects/spring-batch/blob/master/spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java
答案 1 :(得分:0)
您可以指定相对于config
目录的作业路径。例如,如果 fileWritingJob.xml 位于 config / jobs / 目录中,那么您可以按如下方式执行作业:
CommandLineJobRunner.main(new String[]{"jobs/fileWritingJob.xml", "LayeredMultiThreadJobTest"});
同样,如果作业配置文件位于 config 目录之外,您可以写:
CommandLineJobRunner.main(new String[]{"../fileWritingJob.xml", "LayeredMultiThreadJobTest"});
您可以指定用于查找作业的绝对路径。