I have a Spring Batch application, which I start with the CommandLineJobRunner. But now I have to embed this application into our corporate environment. There we ha
Yes, you can launch your job programmatically. If you see in the source of CommandLineJobRunner, the main method just create a Spring context and use the launcher to run the job. So you can do this in your new application.