Spring Batch Job Execution does not show in Executions Tab -


i have spring batch job setup using javaconfig (entirely through java code) deploy on module in spring xd. typically, when launch job, should see in spring xd's admin-ui under executions tab. not mine, however, , have no clue why. i've spent hours scouring through documentation , looking answer, can't find anything.

am missing something? there need put in job make work? cause spring xd not display job's execution under executions?

if need me provide logs or something, let me know, although not seeing error in spring xd console output.

edit: how job defined int code:

    return jobbuilderfactory.get("job")             .incrementer(new runidincrementer())             .start(setupstep)             .next(verifystep)             ...             .next(zipfilesstep)             .next(teardownstep)             .build(); 

does happen @ admin ui? can see job executions when run xd shell command job execution list?

if sure batch job gets executed not getting listed appears bug. see stacktrace @ admin log when execution tab clicked?


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -