使用 spring 批处理时 batch-int:job-launching-gateway 出错

Error with batch-int:job-launching-gateway when using spring batch

我正在尝试使用 batch-int:job-launching-gateway 但出现以下错误:

Exception in thread "main"     org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:spring/integration-context.xml]
Offending resource: class path resource [spring/application-context.xml]; nested exception is org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 68 in XML document from class path resource [spring/integration-context.xml] is invalid; nested exception is org.xml.sax.SAXParseException;
lineNumber: 68; columnNumber: 156; cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'batch-int:job-launching-gateway'.

我的 xml 包含以下内容:

<beans:beans xsi:schemaLocation=" http://www.springframework.org/schema/batch-integration
 http://www.springframework.org/schema/batch-integration/spring-batch-integration.xsd
 http://www.springframework.org/schema/batch
 http://www.springframework.org/schema/batch/spring-batch.xsd
 http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans.xsd
 http://www.springframework.org/schema/integration
 http://www.springframework.org/schema/integration/spring-integration.xsd
 http://www.springframework.org/schema/integration/file
 http://www.springframework.org/schema/integration/file/spring-integration-file.xsd "
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:int-file="http://www.springframework.org/schema/integration/file"
         xmlns:int="http://www.springframework.org/schema/integration"
         xmlns:beans="http://www.springframework.org/schema/beans"
         xmlns:batch-int="http://www.springframework.org/schema/batch-integration"
         xmlns:batch="http://www.springframework.org/schema/batch"
         xmlns="http://www.springframework.org/schema/beans">

错误发生的行是:

<batch-int:job-launching-gateway job-launcher="jobLauncher" reply-channel="jobLaunchReplyChannel" request-channel="channelStart"/>

通道"channelStart"定义在上面。

我是 spring 批处理的新手,所以任何帮助都会很棒。我在类路径上还有 spring-batch-integration、spring-batch-core、spring-batch-infrastructure 和 spring-integration-event。

我已经解决了这个问题。我最初对 spring-batch-core 和 spring-batch-integration 都有不同的版本。当我制作这两个相同的版本时,没有出现错误。