当我执行这个方法时
@SuppressWarnings("deprecation")
public void importFluxEquipement() throws HibernateException, SQLException
{
Session s = HibernateUtil.getCurrentSession();
CallableStatement cs = s.connection().prepareCall("{call PK_COMPAS_FLUX_ISU.IMPORT_EQUIPEMENT_EAI()}");
cs.execute();
log.info("- Intégration du flux ISU Equipement");
}
我有这个错误
错误 - org.hibernate.HibernateException:没有活动事务的连接无效
谢谢。