hibernate 调用存储过程返回参数
Connection conn= getSession().connection(); CallableStatement cs=null; //指定调用的存储过程 cs = conn.prepareCall("{Call PRO_PROCESSING_COMMON.GET_STR(?,?)}"); //设置参数 cs.setString(1, "TESTSTR"); //这里需要配置OUT的参数新型 cs.registerOutParameter(2, Types.VARCHAR); //执行调用 cs.execute(); //输入返回值 System.out.println(cs.getString(2));