Search code examples
spring-batchspring-batch-admin

How to add the description of job in spring batch admin user interface?


Is there any way to add the description of job at the user interface of spring batch admin?

Although, I tried to added the description of the job, spring batch admin cannot support it. I would like to know that whether spring batch admin does not support it or not.


Solution

  • There isn't the ability out of the box to display the job's description. That is only contained in the XML and the data seen in the UI comes from the JobRepository. You'd have to extend the UI to add that functionality.