Java Fluent Mybatis 聚合查询与apply方法详解流程篇
程序员文章站
2022-06-21 23:34:17
前言接着上一篇文章:java fluent mybatis 分页查询与sql日志输出详解流程篇我把分页已经调整好了,现在实验一下官方给出的聚合查询方法。github代码仓库:github仓库数据准备为...
前言
接着上一篇文章:java fluent mybatis 分页查询与sql日志输出详解流程篇
我把分页已经调整好了,现在实验一下官方给出的聚合查询方法。
github代码仓库:github仓库
数据准备
为了聚合查询的条件,添加了几条数据。
min
我们试着获取最小的年龄。
方法实现
@override public integer getagemin() { map<string, object> result = testfluentmybatismapper .findonemap(new testfluentmybatisquery().select.min.age("minage").end()) .orelse(null); return result != null ? convert.toint(result.get("minage"), 0) : 0; }
控制层代码
@apioperation(value = "获取最小年龄", notes = "获取最小年龄") @requestmapping(value = "/getagemin", method = requestmethod.get) @responsebody public result<integer> getagemin() { try { return result.ok(aggregateservice.getagemin()); } catch (exception exception) { return result.error(errorcode.base_error_code.getcode(), exception.getmessage(), null); } }
调试代码
代码说明:
1、age("minage")为什么要加一个字符串进去呢?不加可以吗?答案是可以,不过你看到的结果返回时这样的。
没错,括号内的是聚合查询结果别名,不传的话结果比较尴尬,建议还是传一下。
max
在做max聚合函数的时候,我来搞复杂一点,加上group by。
定义返回实体。
import lombok.allargsconstructor; import lombok.builder; import lombok.data; import lombok.noargsconstructor; /** @author huyi @date 2021/10/26 14:15 @description: 聚合最大年龄返回体 */ @data @allargsconstructor @noargsconstructor @builder public class aggregatemaxagersp { private string name; private integer maxage; }
方法实现
@override public list<aggregatemaxagersp> getagemaxbyname() { list<map<string, object>> result = testfluentmybatismapper.listmaps( new testfluentmybatisquery() .select .name() .max .age("maxage") .end() .groupby .name() .end()); if (result != null && result.size() != 0) { list<aggregatemaxagersp> list = new arraylist<>(); result.foreach( x -> list.add(beanutil.fillbeanwithmapignorecase(x, new aggregatemaxagersp(), false))); return list; } else { return null; } }
控制层代码
@apioperation(value = "根据年龄分组并获取最大年龄", notes = "根据年龄分组并获取最大年龄") @requestmapping(value = "/getagemaxbyname", method = requestmethod.get) @responsebody public result<list<aggregatemaxagersp>> getagemaxbyname() { try { return result.ok(aggregateservice.getagemaxbyname()); } catch (exception exception) { return result.error(errorcode.base_error_code.getcode(), exception.getmessage(), null); } }
调试代码
ok,没什么问题。
代码说明:
1、使用了hutools工具beanutil将map的值填充到实体对象中。
sum、avg、count
sum、avg、count加一起试试吧。
定义返回体
import lombok.allargsconstructor; import lombok.builder; import lombok.data; import lombok.noargsconstructor; /** @author huyi @date 2021/10/26 14:50 @description: 聚合平均总和返回体 */ @data @allargsconstructor @noargsconstructor @builder public class aggregateagesumavgandcountrsp { private string name; private integer sum; private integer avg; private integer count; }
方法实现
@override public list<aggregateagesumavgandcountrsp> getagesumavgcountbyname() { list<map<string, object>> result = testfluentmybatismapper.listmaps( new testfluentmybatisquery() .select .name() .sum .age("sum") .avg .age("avg") .count("count") .end() .groupby .name() .end()); if (result != null && result.size() != 0) { list<aggregateagesumavgandcountrsp> list = new arraylist<>(); result.foreach( x -> list.add( beanutil.fillbeanwithmapignorecase( x, new aggregateagesumavgandcountrsp(), false))); return list; } else { return null; } }
控制层代码
@apioperation(value = "根据年龄分组并获取年龄和、平均年龄、数量", notes = "根据年龄分组并获取年龄和、平均年龄、数量") @requestmapping(value = "/getagesumavgcountbyname", method = requestmethod.get) @responsebody public result<list<aggregateagesumavgandcountrsp>> getagesumavgcountbyname() { try { return result.ok(aggregateservice.getagesumavgcountbyname()); } catch (exception exception) { return result.error(errorcode.base_error_code.getcode(), exception.getmessage(), null); } }
调试代码
ok,完美。
apply方法使用
官方提供了显示*指定字段.apply语法功能。我们测试一下好不好用。
返回体定义
import lombok.allargsconstructor; import lombok.builder; import lombok.data; import lombok.noargsconstructor; import java.util.date; /** @author huyi @date 2021/10/26 15:10 @description: 聚合应用返回体 */ @data @allargsconstructor @noargsconstructor @builder public class aggregateapplyrsp { private string name; private date createtime; private integer minage; private date maxtime; }
方法实现
@override public list<aggregateapplyrsp> getapply() { list<map<string, object>> result = testfluentmybatismapper.listmaps( new testfluentmybatisquery() .select .apply("name") .createtime("createtime") .apply("min(age) as minage", "max(create_time) as maxtime") .end() .groupby .name() .createtime() .end()); if (result != null && result.size() != 0) { list<aggregateapplyrsp> list = new arraylist<>(); result.foreach( x -> list.add(beanutil.fillbeanwithmapignorecase(x, new aggregateapplyrsp(), false))); return list; } else { return null; } }
控制层代码
@apioperation(value = "根据名字获取最小年龄,使用语句", notes = "根据名字获取最小年龄,使用语句") @requestmapping(value = "/getapply", method = requestmethod.get) @responsebody public result<list<aggregateapplyrsp>> getapply() { try { return result.ok(aggregateservice.getapply()); } catch (exception exception) { return result.error(errorcode.base_error_code.getcode(), exception.getmessage(), null); } }
调试代码
ok,完美。
总结
在调试完聚合查询代码后给我直观感受是,这和写sql没啥区别,十分好理解。只是需要掌握fm的select语法,特别是end方法的理解,可以追一下源码看一下具体实现过程。
如果文章对你有帮助的话,点个赞吧,点个赞吧,点个赞吧,重要的事情说三遍。
到此这篇关于java fluent mybatis 聚合查询与apply方法详解流程篇的文章就介绍到这了,更多相关java fluent mybatis内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 九九乘法表制作