2 votes

Qu'est-ce qui ne va pas avec mon contexte Spring Batch ?

Voici le contexte de Spring Batch :

<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
  xmlns:b="http://www.springframework.org/schema/batch"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/batch
    http://www.springframework.org/schema/batch/spring-batch-2.1.xsd">
  <b:job id="bar" job-repository="my-job-repository">
    <b:step id="foo">
      <b:tasklet transaction-manager="my-transaction-manager">
        <b:chunk reader="itemReader" writer="itemWriter"/>
      <b:tasklet>
    </b:step>
  </b:job>
</beans:beans>

C'est ce que dit Spring Batch :

org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found
starting with element 'b:tasklet'. One of
'{"http://www.springframework.org/schema/batch":transaction-attributes,
"http://www.springframework.org/schema/batch":no-rollback-exception-classes,
"http://www.springframework.org/schema/batch":listeners,
"http://www.springframework.org/schema/beans":bean,
"http://www.springframework.org/schema/beans":ref}' is expected.

Qu'est-ce qui ne va pas avec mon XML ?

ps. J'utilise org.springframework.batch:spring-batch-core:2.1.7.RELEASE

10voto

Jigar Joshi Points 116533

Vous avez oublié de fermer le tasklet probablement copié à partir de aquí et a reproduit l'erreur

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X