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.

link|improve this question

You don't need to define service-activator in XML. Use component scan on the package of your class that has @ServiceActivator annotation. – Ritesh Nov 1 '11 at 4:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.