文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

基于Java怎么用Mybatis实现oracle批量插入及分页查询

2023-07-02 14:16

关注

这篇文章主要介绍“基于Java怎么用Mybatis实现oracle批量插入及分页查询”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“基于Java怎么用Mybatis实现oracle批量插入及分页查询”文章能帮助大家解决问题。

1、单条数据insert

<!--简单SQL-->insert into userinfo (USERID, USERNAME, AGE) values(1001,'小明',20);<!--Mybatis写法1,有序列,主键是自增ID,主键是序列--><insert id="insert" parameterType="com.zznode.modules.bean.UserInfo">    <selectKey resultType="java.lang.Integer" order="BEFORE" keyProperty="userid">      SELECT userinfo_userid_seq.nextval as userid from dual    </selectKey>    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)    values (#{userid}, #{username}, #{age})</insert><!--Mybatis写法2,无序列,主键是uuid,字符串--><insert id="insert" parameterType="com.zznode.modules.bean.UserInfo">    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE, TIME)    values (#{userid}, #{username}, #{age}, sysdate)</insert>

2、批量数据批量insert

insert all into 的方式返回值由最后的select 决定:

<!--简单SQL, 方法1-->INSERT ALL INTO userinfo (USERID, USERNAME, AGE) values(1001,'小明',20)INTO userinfo (USERID, USERNAME, AGE) values(1002,'小红',18)INTO userinfo (USERID, USERNAME, AGE) values(1003,'张三',23)select 3 from dual;<!--简单SQL, 方法2-->begin    insert into userinfo (USERID, USERNAME, AGE) values(1001,'小明',20);    insert into userinfo (USERID, USERNAME, AGE) values(1001,'小红',18);    insert into userinfo (USERID, USERNAME, AGE) values(1001,'张三',23);end;<!--简单SQL, 方法3-->insert into userinfo (USERID, USERNAME, AGE) select 1001, '小明', 20 from dual union allselect 1002, '小红', 18 from dual union allselect 1003, '张三', 23 from dual
<!--Mybatis写法1,无序列--><insert id="insertBatch" parameterType="java.util.List">    INSERT ALL     <foreach collection="list" index="index" item="item">        INTO userinfo (USERID, USERNAME, AGE)        VALUES (#{item.userid}, #{item.username}, #{item.age})    </foreach>    select list.size from dual</insert><!--Mybatis写法2,无序列--><insert id="insertBatch">    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)    <foreach collection="list" item="item" index="index" separator="union all">        <!-- <foreach collection="list" item="item" index="index" separator="union all" open="(" close=")"> -->        <!-- (select #{item.userid}, #{item.username}, #{item.age} from dual) -->                <!-- 上面带括号,下面不带括号,都可以,少量数据不带括号效率高 -->        select #{item.userid}, #{item.username}, #{item.age} from dual    </foreach></insert>    <!--Mybatis写法3,有序列--><insert id="insertBatch">    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)    SELECT userinfo_userid_seq.nextval, m.* FROM (    <foreach collection="list" item="item" index="index" separator="union all">        select #{item.username}, #{item.age} from dual    </foreach>    ) m</insert>

3、创建序列

删除序列语法: drop sequence seq_表名

<!--create sequence 序列名            increment by 1 --每次增加几个,我这里是每次增加1       start with 1   --从1开始计数       nomaxvalue      --不设置最大值       nocycle         --一直累加,不循环       nocache;        --不建缓冲区在插入语句中调用:序列名.nextval  生成自增主键。--><!--创建序列-->create sequence SEQ_USERINFOminvalue 1maxvalue 9999999999start with 1increment by 1nocache;<!--删除序列-->drop sequence SEQ_USERINFO

4、oracle分页查询

前端与后端交互,分页查询

service业务实现:

public List<TBadUserW> queryPageBadUserInfo(TbadUserQuery queryModel) {    log.info("分页查询请求参数,{}", JSON.toJSONString(queryModel));    int pageNum = queryModel.getPageNum(); // 开始页    int pageSize = queryModel.getPageSize(); // 每页数量    queryModel.setStart((pageNum - 1) * pageSize); // 开始行数 (+1后)    queryModel.setEnd(pageNum * pageSize); // 结束行数    List<TBadUserW> beans = badUserWDao.queryPageBadUserInfo(queryModel);    log.info("最终查询数量:", beans.size());    return beans;}

mapper.xml文件:

<select id="queryPageInfo" parameterType="com.zznode.test.bean.TbadUserQuery"        resultMap="BaseResultMap" >    SELECT tt.*FROM    (    <!--前端分页需要 total总记录-->        SELECT t.*, ROWNUM rown, COUNT (*) OVER () total FROM        (            select <include refid="Base_Column_List"/> from T_BAD_USER_W            <where>                <if test="city != null and city !=''">                    and city = #{city}                </if>                <if test="county != null and county != ''">                    and county = #{county}                </if>                <if test="startTime != null and startTime !=''">                    and loadtime >= to_date(#{startTime} , 'yyyy-mm-dd hh34:mi:ss')                </if>                <if test="endTime != null and endTime !=''">                    and loadtime <![CDATA[<=]]> to_date(#{endTime} , 'yyyy-mm-dd hh34:mi:ss')                </if>            </where>        )t    )tt    where tt.rown > #{start} and tt.rown <![CDATA[<=]]> #{end}</select>

后端海量数据导出,批量查询

service业务实现:

public List<TBadUserW> queryPageBadUserInfo(TbadUserQuery queryModel) {    log.info("分页查询请求参数,{}", JSON.toJSONString(queryModel));    List<TBadUserW> result = new ArrayList<>();    int pageNum = queryModel.getPageNum(); // 开始页    int pageSize = queryModel.getPageSize(); // 每页数量(可以每页设置为200/500/1000),每次查询的条数    boolean searchAll = true;    while (searchAll){        queryModel.setStart((pageNum - 1) * pageSize); // 开始行数 (+1后)        queryModel.setEnd(pageNum * pageSize); // 结束行数        List<TBadUserW> beans = badUserWDao.queryPageBadUserInfo(queryModel);        if (null == beans || beans.size() < pageSize) {            searchAll = false;        }        if (CollectionUtils.isNotEmpty(beans)) {            result.addAll(beans);        }        pageNum++;    }    log.info("最终查询数量:", result.size());    return result;}

mapper.xml文件编写

<!--这种写法是比较高效的分批查询方法,分批不需要查询total总量,不支持total--><select id="queryPageInfo" parameterType="com.zznode.test.bean.TbadUserQuery"        resultMap="BaseResultMap" >    SELECT tt.*FROM    (        SELECT t.*, ROWNUM rown FROM        (            select <include refid="Base_Column_List"/> from T_BAD_USER_W            <where>                <if test="city != null and city !=''">                    and city = #{city}                </if>                <if test="county != null and county != ''">                    and county = #{county}                </if>                <if test="startTime != null and startTime !=''">                    and loadtime >= to_date(#{startTime} , 'yyyy-mm-dd hh34:mi:ss')                </if>                <if test="endTime != null and endTime !=''">                    and loadtime <![CDATA[<=]]> to_date(#{endTime} , 'yyyy-mm-dd hh34:mi:ss')                </if>            </where>        )t where ROWNUM <![CDATA[<=]]> #{end}    )tt    where tt.rown > #{start}</select>

关于“基于Java怎么用Mybatis实现oracle批量插入及分页查询”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯