hi,
After a lot of search, I've found a solution ! The json message is prepared on
"spring-batch-admin-manager/src/main/resources/org/springframework/batch/admin/web/manager/jobs/json/executions.ftl". So i add my attribute which is present at a "JobExecutionInfo" class, like the other.
Now this .ftl file looks like :
Code:
.... "startTime" : "${jobExecutionInfo.startTime}",
"startDate " : "${jobExecutionInfo.startDate }",
"duration" : "${jobExecutionInfo.duration}",....
And it's working ! the json message contains the startDate with "aaaa-mm-dd" format !
I hope it will be useful for anybody :-)
Regards,
Yo