在Spring&Mybatis项目中,在Dao实现类(已继承SqlSessionDaoSupport)中,想获得一个数据库连接,为什么得到的是已关闭的连接? 获得关闭的连接:
connection = super.getSqlSession().getConnection();
获得可用的连接:
SqlSessionTemplate st = (SqlSessionTemplate) getSqlSession(); connection = SqlSessionUtils .getSqlSession(st.getSqlSessionFactory(), st.getExecutorType(),st.getPersistenceExceptionTranslator()) .getConnection();
有朋友读过源码知道原因的么?