我正在使用Maven Shade插件将具有依赖性的所有jar打包到一个jar文件中。到目前为止,我已经成功了。这里的主要问题是我要在其上运行jar的服务器将不会连接到Internet。所以我在流程中使用了maven AppendingTransformer
来附加所有spring.schemas
和spring.handlers
。但是我仍然无法在spring.schemas中找到springs batch的声明。我正在使用springs batch 2.1.7.RELEASE并在springs-batch-core
文件中添加了pom.xml
依赖项。无法理解背后的原因。
最佳答案
我建议最近将Spring Boot用于此类工作。这确实是此时创建Spring应用程序的最佳方法。