Spring data jpa 调用存储过程处理返回参数及结果集
一、环境
1.此随笔内容基于spring boot整合的spring data jpa项目,
2.数据库为mysql 5.7.9版本
二、内容
1. 新建存储过程 pro_query_object
BEGIN #Routine body goes here...a_theme_code varchar(10),out num int select o.obj_code,o.obj_name,o.obj_id from qt_object o where o.theme_code=a_theme_code; select count(*) into num from qt_object o where o.theme_code=a_theme_code GROUP BY o.theme_code; END
2. 新建实体,首先把我们需要返回的结果集的实体字段定义好,然后加上@NamedStoredProcedureQueries 注解绑定存储过程
@Entity
@NamedStoredProcedureQueries({
//管理列表
@NamedStoredProcedureQuery(name = "pro_general_list", procedureName = "pro_general_list",
resultClasses = { QtObject.class },
parameters = {
@StoredProcedureParameter(mode = ParameterMode.IN, name = "a_theme_code", type = String.class),
@StoredProcedureParameter(mode = ParameterMode.OUT, name = "num", type = Integer.class) // 记录满足条件的总条数
}),
})
public class QtObject {
@Id
@Column(name = "obj_id")
private String objId;
private String obj_code;
private String obj_name;
// 此处省略get、set
}此处:
- @NamedStoredProcedureQueries 内可写多个存储过程,使用“,”隔开;
@NamedStoredProcedureQuery
中
procedureName参数是数据库中存储过程的名字;- name参数是JPA中的存储过程的名字;resultClasses参数是返回结果集绑定的实体名称(处理结果集重要参数);
parameters
中使用
@StoredProcedureParameter来定义存储过程使用的IN、OUT参数。
3.
完成实体后,我们在编写调用方法
/// 调用存储过程
public StoredProcedureQuery callStore(String themeCode) { StoredProcedureQuery store = this.entityManager.createNamedStoredProcedureQuery("pro_general_list");
store.setParameter("a_theme_code", themeCode);
store.execute(); return store; }
调用存储过程时,需要先注入实体管理器EntityManager,调用其中的 createNamedStoredProcedureQuery方法,传入jpa 的存储过程名称,然后只需要传入in 参数,执行之后返回StoredProcedureQuery对象。
4. 结果处理
public ResultInfo queryInitGeneral(String themeCode) { ResultInfo<List> resultInfo = new ResultInfo<List>(); StoredProcedureQuery storedProcedureQuery= callStore(start_date, end_date,themeCode,deptCode,obj_name,start_num,end_num); Integer nums = (Integer)storedProcedureQuery.getOutputParameterValue("num"); resultInfo.setRows(storedProcedureQuery.getResultList()); resultInfo.setTotal(nums); resultInfo.setResult(1); resultInfo.setMsg("查询成功!"); return resultInfo; }
在调用过程中,使用StoredProcedureQuery中的getResultList()方法可以返回存储过程执行之后的结果集(此处的结果集是一个,多个还未实验);
然后使用storedProcedureQuery的 getOutputParameterValue() 方法可以返回out 参数
Spring data jpa 调用存储过程处理返回参数及结果集的更多相关文章
- spring data jpa 调用存储过程
网上这方面的例子不是很多,研究了一下,列出几个调用的方法. 假如我们有一个mysql的存储过程 CREATE DEFINER=`root`@`localhost` PROCEDURE `plus1in ...
- ibatis调用存储过程(无返回参数)
ibatis调用存储过程例子: java: getSqlMapClientTemplate().insert(sql, paraMap) ibatis xml: <parameterMap id ...
- 关于Spring Data JPA 多表查询 返回自定义Vo的问题记录
这两天开了一个新项目,使用SpringBoot+SpringData, 刚做了一个小功能,都是一张表的操作没什么问题,今天设计到了两张表联查,两张表各取了几个字段,组合成了一个vo, 当我用原生sq ...
- 关于spring data jpa的@query的传入参数是对象怎么匹配参数
/** * Specifies methods used to obtain and modify person related information * which is stored in th ...
- EF6调用存储过程,返回多个结果集处理
链接:http://www.codeproject.com/Articles/675933/Returning-Multiple-Result-Sets-from-an-Entity-Fram 案例: ...
- Hibernate、Mybatis与Spring Data JPA
从零开始集成Springboot+MyBatis+JPA https://www.jianshu.com/p/e14c4a6f6871 MyBatis 与Hibernate的区别 http://xhr ...
- SpringBoot学习笔记:Spring Data Jpa的使用
更多请关注公众号 Spring Data Jpa 简介 JPA JPA(Java Persistence API)意即Java持久化API,是Sun官方在JDK5.0后提出的Java持久化规范(JSR ...
- spring boot + spring data jpa
Spring Data Repository的核心接口是Repository(好像也没什么好惊讶的).这个接口需要领域类(Domain Class)跟领域类的ID类型作为参数.这个接口主要是让你能知道 ...
- EF 6 调用存储过程时返回多结果集和OUTPUT参数问题
原文地址:http://q.cnblogs.com/q/56836/ 各位大侠,提问一个关于EF6调用存储过程时返回多结果集和OUTPUT参数问题 目前已经可以调用存储过程并且可以返回多个结果集. 但 ...
随机推荐
- cvc-elt.1: Cannot find the declaration of element 'beans'Failed to read schema document 'http://www.springframework.org/schema/beans/spring- beans-3.0.xsd'
Multiple annotations found at this line: - cvc-elt.1: Cannot find the declaration of element 'beans' ...
- C# -- 使用 DriveInfo 获取磁盘驱动器信息
C# -- 使用 DriveInfo 获取磁盘驱动器信息 1. 代码实现 class Program { static void Main(string[] args) { GetComputerDi ...
- vue源码分析—Vue.js 源码目录设计
Vue.js 的源码都在 src 目录下,其目录结构如下 src ├── compiler # 编译相关 ├── core # 核心代码 ├── platforms # 不同平台的支持 ├── ser ...
- 移动端左右滑动问题-html与css解决
<!DOCTYPE html> <html> <head> <title>纯css实现左右滑动</title> <style type ...
- 移动开发的捷径:3种方式轻松创建webapp
移动开发行业发展迅速,为迎合用户的需求,大多数传统互联网公司在主导web网站的同时还需兼顾移动开发方向.在已有PC端网站的基础上,考虑到人力.成本和技术.开发周期等因素,许多公司会选择开发快速.维护便 ...
- ubuntu下安装Visual Studio Code
环境准备 先安装一般umake没有问题 sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make sudo apt-get update sudo ...
- css基本介绍
目录 CSS初识 构造规则 注意 样式表的定义和使用 行内式(内联样式) 内部样式表 外部样式表(外链式) 选择器 标签选择器(元素选择器) 类选择器 id选择器 通配符选择器 伪类选择器 链接伪类选 ...
- form单选框
form中的单选框: var resultStartRadio = new Ext.form.RadioGroup({ id : 'resultStartRadio', name :"for ...
- NodeJs之word文件生成与解析
NodeJs之word文件生成与解析 一,介绍与需求 1.1,介绍 1,officegen模块可以为Microsoft Office 2007及更高版本生成Office Open XML文件.此模块不 ...
- 2D-2D:对极几何 基础矩阵F 本质矩阵E 单应矩阵H
对极约束 \[ \boldsymbol{x}_{2}^{T} \boldsymbol{F} \boldsymbol{x}_{1}=\boldsymbol{0} \quad \hat{\boldsymb ...