Code:
<batch:step id="step_rejectedTransactionsStatus3">
		<batch:tasklet task-executor="taskExecutor_rejectedTransactionsStatus">
			<batch:chunk reader="reader_rejectedTransactionsStatus3" processor="processor_rejectedTransactionsStatus3" writer="writer_rejectedTransactionsStatus3" commit-interval="1">
				<skippable-exception-classes>
					<include class="org.springframework.batch.core.JobExecutionException"/>
				</skippable-exception-classes>
			</batch:chunk>
		</batch:tasklet>
	</batch:step>
1)
in line <skippable-exception-classes> above a have error:
"cvc-complex-type.2.4.a: Invalid content was found starting with element 'skippable-exception-classes'. One of '{"http://www.springframework.org/schema/batch":reader, "http://www.springframework.org/schema/batch"rocessor, "http://
www.springframework.org/schema/batch":writer, "http://www.springframework.org/schema/batch":skip-policy, "http://www.springframework.org/schema/batch":retry-policy, "http://www.springframework.org/schema/batch":retry-listeners, "http://
www.springframework.org/schema/batch":streams, "http://www.springframework.org/schema/batch":skippable-exception-classes, "http://www.springframework.org/schema/batch":retryable-exception-classes, "http://www.springframework.org/schema/
batch":listeners}' is expected."

what's wrong with my include class?

2)
My writer:
Code:
<bean id="writer_rejectedTransactionsStatus3" class="pl.bph.rafik.jobs.rejectedtransactions.writer.RejectedTransactionsSendNotificationWriter">
		<property name="rejectedTransactionsManager" ref="rejectedTransactionsManager" />
		<property name="jmsManager" ref="jmsManager" />
</bean>
durin starting application tries connect to the jmsManager but if my JMS Queues are not available then i have errors and my application doesn't work.
Can i use <skippable-exception-classes> to resolve this problem, and application will work properly after starting without JMS available queues?