0
有沒有辦法檢索在此位置聲明的作業bean:classpath */META-INF/spring/batch/jobs/*。xml?檢索彈簧批處理作業bean定義
試過下面的代碼,但我無法檢索它們。
@Autowired
private ApplicationContext applicationContext;
public void sometMethod() {
AutowireCapableBeanFactory beanFactory = applicationContext.getAutowireCapableBeanFactory();
String[] strings = ((BeanDefinitionRegistry) beanFactory).getBeanDefinitionNames();
}
的可能的複製http://stackoverflow.com/questions/16769941/spring-method -to-GET-全豆期的一所賜型 –