用了ssh框架后,怎么进行单元测试
是不是好多自动注入的东西都要自已new啊?好麻烦
------解决方案--------------------把spring的bean工厂实例化,然后从工厂中拿相应的实例,不需要一个个的去new的。
例如
BeanFactory bf = new FileSystemXmlApplicationContext("/WebRoot/WEB-INF/config/applicationContext*.xml");//spring配置文件位置
SessionFactory sf = (SessionFactory) bf.getBean("sessionFactory");//取出hibernate的session工厂
------解决方案--------------------springContextTest
------解决方案--------------------