jpa调⽤mysql函数_Jpa调⽤存储过程及参数public List findAllEntityListBySearch(Long inputInfoId, int flag) throws Exception {
List infoviewList=new ArrayList<>();
EntityManager em = ateEntityManager();
try {
StoredProcedureQuery storedProcedure =em.createStoredProcedureQuery("存储名称");
//下⾯是参数
//参数赋值
storedProcedure.setParameter("InputInfoID",inputInfoId.intValue());
mysql存储过程使用storedProcedure.setParameter("Flags",flag);
//返回list
ResultList();
} catch (Exception ex) {
<("{} method thrown exception++++++","findAllEntityListBySearch", ex);
} finally {
em.close();
}
return infoviewList;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。