142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider

Posted SpringBoot

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider相关的知识,希望对你有一定的参考价值。

需求缘起:

网友1:这样如果是不定条件查询怎么解决呢?也就是xml中可以用if标签,注解怎么搞呢?

网友2:这动态sql用注解的方式不太方便吧!博主有好方法,请推出参照一下,一直没用注解的原因,就是动态sql没有好的方式,包括when foreach!针对简单的查询还是可以的!

       在上一篇博客中,我们使用了<script>方法使用if test标签,但是怎么看代码怎么都不舒服,本篇博客使用另外一种方式解决这个问题。

 

本章大纲:

(1)动态语言注解

(2)@Provider使用思路

(3)@SelectProvider小试牛刀

(4)@SelectProvider初露锋芒

(5)@SelectProvider过关斩将

(6)@InsertProvider小弟不敢当

(7)@UpdateProvider你加我来改

(8)@DeleteProvider不高兴就删

 

接下来看下具体的内容:

(1)动态语言注解

对于创建动态的查的语言。MyBatis提供了多个注解如:@InsertProvider,@UpdateProvider,@DeleteProvider和@SelectProvider,这些都是建立动态语言和让MyBatis执行这些语言。

 

(2)@Provider使用思路

       对于MyBatis提供的几个@Provider,里面最主要的参数是type,也就是sql类的Calss对象,另外就是对应的方法名,我们看SelectProvider的源代码:


所以要实现动态的SQL查询,那么大体的思路就是,编写一个SqlProvider,比如:DemoSqlProvider,在此方法中返回一条SQL语句即可。然后在Mapper类中使用@SelectProvider注解,指定provider类和对应的SQL方法。

       接下来我们来解决上一篇博客的问题:

问题:有一个表中有id,name,email等字段,有这么一个查询要求:我们希望的是如果name不为null的话,那么就当做条件,否则就不要当做条件;如果email不为null,那么就当做条件,否则不当做条件。

       接下里看看怎么使用@SelectProvider破。

 

(3)@SelectProvider小试牛刀

       我们先编写一个DemoSqlProvider,代码如下:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


DemoMapper中加入查询方法:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider

这里使用@SelectProvider,不是@Select了。


访问1:http://127.0.0.1:8080/select4会返回全部数据,动态SQL是:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


访问2:http://127.0.0.1:8080/select4?name=王五 会返回name=王五的数据,动态SQL是:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider

 

访问3:http://127.0.0.1:8080/select4?name=王五&email=aa@qq.com会返回name=王五并且email=aa@qq.com的数据,动态SQL是:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


(4)@SelectProvider初露锋芒

       上面的代码直接纯SQL编写了,可读性还是相对差了点,MyBatis提供了SQL类(org.apache.ibatis.jdbc.SQL),可以让代码看起来更有意义。

       在DemoSqlProvider中加入方法:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


DempMapper中加入代码:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


(5)@SelectProvider过关斩将

       原以为万事大吉了,开心的不行,于是乎,信手拈来句代码,在查询代码加入:

PageHelper.startPage(1, 2); 整个代码如下:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


  运行,访问:http://127.0.0.1:8080/select6 完了,这是什么鬼:

nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'providerTakesParameterObject' in 'class org.apache.ibatis.builder.annotation.ProviderSqlSource'

       出现以上问题,是由于我们使用的PageHelper版本导致的,升级版本即可。

原先的版本为:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


升级为:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


貌似:4.1.5就支持@SelectProvider分页查询了(未进行验证)。



(6)@InsertProvider小弟不敢当

       最麻烦的查询搞定了之后,这个就简单了,

       在DemoSqlProvider中加入如下代码:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


DemoMapper中加入如下代码:


142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider

   到此搞定。


142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider




(7)@UpdateProvider你加我来改

       DemoSqlProvider中的代码如下:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


 在DemoMapper中的代码:

142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider


(8)@DeleteProvider不高兴就删

       DemoSqlProvider代码:

DemoMapper中的代码:


 好了这篇文章介绍的太多了,休息下。

 

视频+交流平台:

à Spring Boot视频

http://412887952-qq-com.iteye.com/blog/2344171

 

à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

 





以上是关于142. Spring Boot MyBatis升级篇-注解-动态SQL(if test)-方案二:@Provider的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot mybatis-starter原理

Spring Boot:Spring Boot整合Mybatis案例

Spring Boot 实用MyBatis做数据库操作

Spring boot 入门三:spring boot 整合mybatis 实现CRUD操作

Spring Boot集成Mybatis及通用Mapper

spring boot 与 Mybatis整合(*)