すみません、私は英語が少し嫌いです。
私を助けてください。問題があります。
@Configuration と @Bean を使用するために、XML を Java クラスに変更したいのです。
私はどのように行いますか ??
変更したいのは以下です。
特に「module-context.xml」はわかりません...
ただ知りたいだけです。
起動コンテキスト.xml
<import resource="classpath:/META-INF/spring/module-context.xml" />
<bean id="jobOperator"
class="org.springframework.batch.core.launch.support.SimpleJobOperator"
p:jobLauncher-ref="jobLauncher" p:jobExplorer-ref="jobExplorer"
p:jobRepository-ref="jobRepository" p:jobRegistry-ref="jobRegistry" />
<bean id="jobExplorer"
class="org.springframework.batch.core.explore.support.JobExplorerFactoryBean"
p:dataSource-ref="SpringDataSource" />
<bean id="jobRegistry"
class="org.springframework.batch.core.configuration.support.MapJobRegistry" />
<bean
class="org.springframework.batch.core.configuration.support.JobRegistryBeanPostProcessor">
<property name="jobRegistry" ref="jobRegistry" />
</bean>
<bean id="jobLauncher"
class="org.springframework.batch.core.launch.support.SimpleJobLauncher">
<property name="jobRepository" ref="jobRepository" />
</bean>
<bean id="jobRepository"
class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean"
p:dataSource-ref="SpringDataSource" p:transactionManager-ref="springTransactionManager" />
<bean id="placeholderProperties"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:batch.properties" />
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="order" value="1" />
</bean>
<bean id="SpringDataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${batch.jdbc.driver}" />
<property name="url" value="${batch.jdbc.url}" />
<property name="username" value="${spring.batch.jdbc.user}" />
<property name="password" value="${spring.batch.jdbc.password}" />
</bean>
<bean id="springTransactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
lazy-init="true">
<property name="dataSource" ref="SpringDataSource" />
</bean>
モジュールコンテキスト.xml
<job id="job1" xmlns="http://www.springframework.org/schema/batch"
incrementer="jobParametersIncrementer">
<step id="simple-step" parent="simpleStep">
<tasklet>
<chunk reader="exampleReader" writer="exampleWriter" />
</tasklet>
</step>
</job>
<bean id="exampleReader"
class="jp.co.app.cm.nochunk.ExampleItemReader" />
<bean id="exampleWriter"
class="jp.co.app.cm.nochunk.ExampleItemWriter" />
<bean id="simpleStep"
class="org.springframework.batch.core.step.item.SimpleStepFactoryBean"
abstract="true">
<property name="transactionManager" ref="springTransactionManager" />
<property name="jobRepository" ref="jobRepository" />
<property name="startLimit" value="100" />
</bean>
誰か教えてください。