当前位置:   article > 正文

springboot+mybatis+操作记录_springboot+mybatis-plul 数据操作记录

springboot+mybatis-plul 数据操作记录


springboot 随意2.0以上版本

1.配置mybatis依赖POM.XML

<dependency>
			<groupId>org.mybatis.spring.boot</groupId>
			<artifactId>mybatis-spring-boot-starter</artifactId>
			<version>1.3.1</version>
		</dependency>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

application.proerties部分配置
mybatis.mapper-locations= classpath:com/datacheck/verification/dao/*.xml*

mybatis sql语句问题

oracle 查询sql的like匹配查询
可以使用
oracle 中的concat函数只能使用2个参数如果多个参数拼接需要连续使用concat操作如下就可以

<select id="queryXXXX" parameterType="Map" resultType="Map">
LIKE CONCAT(CONCAT('%',#{xlbh,jdbcType=VARCHAR}),'%')
  • 1
  • 2

logback.xml

这里有一个启动springboot使用debug时候会弹出一堆东西
CONDITIONS EVALUATION REPORT
可以是用一下的操作不让这些东西出来,可以正常查看打印的执行SQL

 <!-- 日志输出级别 -->
    <logger name="org.springframework.boot.autoconfigure.logging">
        <level value="info" />
    </logger>
    <root level="debug"  additivity="false">
        <appender-ref ref="STDOUT" />
    </root>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

引入分页查询

引入下面的依赖后台查询分页结果

 <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>5.1.8</version>
        </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

controller 层
在这里插入图片描述
这个地方可以在操作一下page,rows不这么传可以整体放倒paramap中
但是我不想动了懒

Service实现层可以写一个PageHelper.startPage(page,size)
这个地方有很多种操作方式你们可以任意选
在这里插入图片描述

在这里插入图片描述
后边就是执行你想查询的结果集合SQL返回结果集自动分页成功

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/157819
推荐阅读
相关标签
  

闽ICP备14008679号