Tidy up spring config IDE settings

This commit is contained in:
dsyer
2008-10-30 12:07:44 +00:00
parent dade6952c8
commit e8956383dd
2 changed files with 26 additions and 26 deletions

View File

@@ -2,32 +2,32 @@
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p" 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/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<description>Example for Hibernate integration.</description>
<bean id="hibernateJob" parent="simpleJob">
<!--
set restartable=false so that this job can be used by more than one
test
-->
<property name="restartable" value="false" />
<property name="steps">
<bean id="step1" parent="skipLimitStep">
<property name="skipLimit" value="5" />
<property name="itemReader" ref="hibernateItemReader" />
<property name="itemProcessor" ref="creditIncreaseProcessor" />
<property name="itemWriter" ref="hibernateCreditWriter" />
<property name="commitInterval" value="3" />
</bean>
</property>
</bean>
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<description>Example for Hibernate integration.</description>
<bean id="hibernateJob" parent="simpleJob">
<!--
set restartable=false so that this job can be used by more than one
test
-->
<property name="restartable" value="false" />
<property name="steps">
<bean id="step1" parent="skipLimitStep">
<property name="skipLimit" value="5" />
<property name="itemReader" ref="hibernateItemReader" />
<property name="itemProcessor" ref="creditIncreaseProcessor" />
<property name="itemWriter" ref="hibernateCreditWriter" />
<property name="commitInterval" value="3" />
</bean>
</property>
</bean>
<bean id="creditIncreaseProcessor" class="org.springframework.batch.sample.domain.trade.internal.CustomerCreditIncreaseProcessor" />
<bean id="creditIncreaseProcessor" class="org.springframework.batch.sample.domain.trade.internal.CustomerCreditIncreaseProcessor" />
<bean id="hibernateCreditWriter"
class="org.springframework.batch.sample.domain.trade.internal.HibernateAwareCustomerCreditItemWriter">
<property name="sessionFactory" ref="sessionFactory" />