Example usage for org.springframework.batch.core.configuration.support ClassPathXmlApplicationContextFactory ClassPathXmlApplicationContextFactory

List of usage examples for org.springframework.batch.core.configuration.support ClassPathXmlApplicationContextFactory ClassPathXmlApplicationContextFactory

Introduction

In this page you can find the example usage for org.springframework.batch.core.configuration.support ClassPathXmlApplicationContextFactory ClassPathXmlApplicationContextFactory.

Prototype

ClassPathXmlApplicationContextFactory

Source Link

Usage

From source file:test.profile.ClassPathXmlJobRegistry.java

public void afterPropertiesSet() throws Exception {

    for (Resource resource : jobPaths) {
        ClassPathXmlApplicationContextFactory applicationContextFactory = new ClassPathXmlApplicationContextFactory();
        applicationContextFactory.setPath(resource);
        applicationContextFactory.setApplicationContext(parent);
        ApplicationContext context = applicationContextFactory.createApplicationContext();
        String[] names = context.getBeanNamesForType(Job.class);

        for (String name : names) {
            logger.debug("Registering job: " + name + " from context: " + resource);
            ApplicationContextJobFactory jobFactory = new ApplicationContextJobFactory(
                    applicationContextFactory, name);
            jobRegistry.register(jobFactory);
        }/*from  w w w .  j a  v  a  2s.c om*/
    }

    if (jobRegistry.getJobNames().isEmpty()) {
        throw new NoSuchJobException("Could not locate any jobs in resources provided.");
    }

}