1
votes

I am using spring batch admin as a web interface for administering the batch jobs. I would like to have some way to notify a set of email addresses that batch job is completed. Is there any plugin to spring batch admin that will allow me to accomplish what I want?

P.S. I have tried googling spring batch admin email notification plugin, but I could not find anything.

Thanks.

1

1 Answers

1
votes

Spring Batch Admin does not provide this functionality. However, it is easily added to your job via a JobExecutionListener. You can implement your own to send the emails or you may be able to do it with Spring Integration (without writing code) but I'd have to play with it a bit to be sure.