@Autowired
private SessionFactory sessionFactory;
@Before
public void myInitMethod(){
sessionFactory.getCurrentSession().setFlushMode(FlushMode.ALWAYS);
}
其中
sessionFactory.getCurrentSession()便是取得当前的session的方法
而
@Autowired
private SessionFactory sessionFactory;
表示注入