Is there a way to retrieve the job beans declared within this location: classpath*/META-INF/spring/batch/jobs/*.xml ?
Tried the code below but I was not able to retrieve them.
@Autowired
private ApplicationContext applicationContext;
public void sometMethod() {
AutowireCapableBeanFactory beanFactory = applicationContext.getAutowireCapableBeanFactory();
String[] strings = ((BeanDefinitionRegistry) beanFactory).getBeanDefinitionNames();
}