private ArticleInfoDaoImpl articleInfoDao; public void testSave(){ ApplicationContext context = new ClassPathXmlApplicationContext( new String[] { "applicationContext.xml" }); //src下spring配置文件 BeanFactory factory = (BeanFactory) context; articleInfoDao = (ArticleInfoDaoImpl) factory.getBean("articleInfoDao");// 获取bean List<Articleinfo> list =articleInfoDao.get(); }