从hibernate调用存储过程不能在性能规模上工作

时间:2017-11-18 14:40:23

标签: postgresql hibernate stored-procedures

我有一个来自hibernate的下面存储过程调用。根据输入,我必须从DB(从多个表)中删除数据

currentSession().createSQLQuery("CALL stored_proc_name(:param)").setParameter("param", "Sample");

同样在功能负载上工作正常,但是当我为性能数据执行相同的流程(通过存储过程删除~100k行)时,什么也没发生。这是因为Hibernate会话正在关闭吗?有什么指针吗?

0 个答案:

没有答案