IN PROGRESS - BATCH-693: Refactor samples along domain contours

added internal subpackages
This commit is contained in:
robokaso
2008-07-25 15:21:37 +00:00
parent 419f146da4
commit 1e39b06226
103 changed files with 240 additions and 187 deletions

View File

@@ -25,7 +25,7 @@
</property>
<property name="itemWriter">
<bean
class="org.springframework.batch.sample.domain.trade.TradeWriter">
class="org.springframework.batch.sample.domain.trade.internal.TradeWriter">
<property name="dao" ref="tradeDao" />
</bean>
</property>
@@ -35,7 +35,7 @@
ref="personFileItemReader" />
<property name="itemWriter">
<bean
class="org.springframework.batch.sample.domain.person.PersonWriter" />
class="org.springframework.batch.sample.domain.person.internal.PersonWriter" />
</property>
</bean>
@@ -91,7 +91,7 @@
</bean>
<bean id="tradeDao"
class="org.springframework.batch.sample.domain.trade.JdbcTradeDao">
class="org.springframework.batch.sample.domain.trade.internal.JdbcTradeDao">
<property name="jdbcTemplate" ref="jdbcTemplate" />
<property name="incrementer">
<bean parent="incrementerParent">