OPEN - issue BATCH-295: JobLauncher should have only one run method.

http://jira.springframework.org/browse/BATCH-295

Add a property editor for JobIdentifier so the JMX demo can work.
This commit is contained in:
dsyer
2008-01-21 11:37:12 +00:00
parent c4e47ffab0
commit badcf74c7b
11 changed files with 410 additions and 145 deletions

View File

@@ -102,7 +102,14 @@
<bean id="convertingMethodInterceptor"
class="org.springframework.batch.execution.bootstrap.support.TypeConverterMethodInterceptor">
<property name="convertException" value="true" />
<property name="convertException" value="true" />
<property name="customEditors">
<map>
<entry key="org.springframework.batch.core.domain.JobIdentifier">
<bean class="org.springframework.batch.execution.bootstrap.support.JobIdentifierPropertyEditor"/>
</entry>
</map>
</property>
</bean>
<bean id="logAdvice"