Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/batch]

后端 未结 5 1963
抹茶落季
抹茶落季 2020-11-30 03:16

Situation

I am using Spring Batch to build an Accumulative Snapshot for our Data Warehouse and I am having a configuration roadblock that I cannot figure out.

<
5条回答
  •  野性不改
    2020-11-30 04:19

    The error is caused because the META-INF/spring.handlers file in spring-batch-core-2.1.7.RELEASE.jar isn't being seen. This file contains

    http\://www.springframework.org/schema/batch=org.springframework.batch.core.configuration.xml.CoreNamespaceHandler
    

    It looks like either a classpath problem or like the spring.handlers file in the other JARs (spring-context, e.g.) is somehow taking precedence.

提交回复
热议问题