将 Spring Batch 从 1.1.3 转换为 2.0.0

发布于 2024-08-18 15:23:48 字数 220 浏览 6 评论 0原文

我正在尝试将 Spring Batch 作业从版本 1.1.3 转换为 2.0.0,但出现了许多错误。设法解决了其中的大部分问题,但没有解决以下问题:在我的 QuartzBatchLauncher 中,代码调用“new ClassPathXmlApplicationContextJobFactory(bean,path,parent)”,并且我没有运气发现与此类等效的 2.0 是什么。感谢任何为我指明正确方向的帮助。谢谢。

I'm trying to convert Spring Batch jobs from version 1.1.3 to 2.0.0 and have gotten numerous errors. Managed to resolve most of these, but not the following: In my QuartzBatchLauncher, the code invokes "new ClassPathXmlApplicationContextJobFactory(bean, path, parent)" and I've had no luck discovering what is the 2.0 equivalent to this class. Appreciate any help pointing me in the right direction. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧夏天 2024-08-25 15:23:48

可能是,这个?

ClassPathXmlApplicationContextFactory f = new ClassPathXmlApplicationContextFactory(new ClassPathResource(path));
f.setApplicationContext(parent);

JobFactory j = new ApplicationContextJobFactory(name, f);

May be, this?

ClassPathXmlApplicationContextFactory f = new ClassPathXmlApplicationContextFactory(new ClassPathResource(path));
f.setApplicationContext(parent);

JobFactory j = new ApplicationContextJobFactory(name, f);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文