spring.boot mybaits集成

Posted 听哥哥的话

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring.boot mybaits集成相关的知识,希望对你有一定的参考价值。

https://www.cnblogs.com/pejsidney/p/9272562.html (insertBatch批量插入)
        第一篇博客循环部分有错误,参照下面的例子去更改
        List<String> list=new ArrayList<String>();
        list.add("1");
        list.add("2");
        list.add("3");
        list.add("4");
        list.add("5");
        list.add("6");
        list.add("7");
        int batchCount=3;
        int batchLastIndex=batchCount;
        for(int index=0;index<list.size();){
            List<String> subs;
            if(batchLastIndex>list.size()){
               batchLastIndex=list.size();
               subs= list.subList(index, batchLastIndex);
            }else{
                subs = list.subList(index, batchLastIndex);
                index = batchLastIndex;
                batchLastIndex = batchLastIndex + batchCount;  //这一行改造原来是batchLastIndex = batchLastIndex + batchCount-1
            }

        }
https://blog.csdn.net/qq_33337504/article/details/78460383 (select * from )
https://blog.csdn.net/qq_36367789/article/details/79732868 特别完整版

 

以上是关于spring.boot mybaits集成的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 入门:集成Redis哨兵模式,实现Mybatis二级缓存

spring boot + mybaits 操作数据库

spring boot + mybaits 处理枚举类 enum

Springboot整合Mybaits

在spring boot中打印mybaits执行的sql

使用IDEA创建Spring boot项目,继承mybaits。并进行简单的数据库查询操作