Problem:
I need to start a batch job once a new file lands in a directory. I have written the job and its working fine through Junit. Now I need to use Spring's integration features and launch the job once a new file comes in directory. For this I have written a POJO with @ServiceActivator annotated method( public void launchJob(File file), where I have the code to launch a Job using a JobLauncher).
Also I have hooked the applicationContext.xml(which is in WEB-INF) and configured the spring's listener(ContextLoaderListener) in web.xml.
Everything works fine(including the data sources getting looked up and persistence.xml getting picked up on server start etc) except that the annotated method(@ServiceActivator) is not getting triggered.
Excerpts from my applicationContext.xml:
<int:channel id="inputChannel">
<int:queue capacity="100"/>
</int:channel>
<int:service-activator auto-startup="true" method="launchJob"
id="serviceActivator" ref="ghkServiceActivator"
input-channel="inputChannel">
<int:poller>
<int:interval-trigger interval ="500"/>
</int:poller>
<file:inbound-channel-adapter id="fileAdapater"
directory="file:C:/temp_dir"
channel="inputChannel"
<int:poller>
<int:interval-trigger interval="500"/>
</int:poller>
</file:inbound-channel-adapter>
</int:service-activator>
Could you please tell me what am I doing wrong ? Or the entire idea of launching a job this way is not possible ?
Thanks.