All Projects → licc168 → springBoot-hbase

licc168 / springBoot-hbase

Licence: other
封装了一个简易的hbase-orm框架

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to springBoot-hbase

Spring Boot Quick
🌿 基于springboot的快速学习示例,整合自己遇到的开源框架,如:rabbitmq(延迟队列)、Kafka、jpa、redies、oauth2、swagger、jsp、docker、spring-batch、异常处理、日志输出、多模块开发、多环境打包、缓存cache、爬虫、jwt、GraphQL、dubbo、zookeeper和Async等等📌
Stars: ✭ 1,819 (+7176%)
Mutual labels:  hbase, springboot
Szt Bigdata
深圳地铁大数据客流分析系统🚇🚄🌟
Stars: ✭ 826 (+3204%)
Mutual labels:  hbase, springboot
Technology Talk
汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识
Stars: ✭ 12,136 (+48444%)
Mutual labels:  hbase, springboot
Springboot Templates
springboot和dubbo、netty的集成,redis mongodb的nosql模板, kafka rocketmq rabbit的MQ模板, solr solrcloud elasticsearch查询引擎
Stars: ✭ 100 (+300%)
Mutual labels:  hbase, springboot
disk
基于hadoop+hbase+springboot实现分布式网盘系统
Stars: ✭ 53 (+112%)
Mutual labels:  hbase, springboot
chat-server-release
[飞享]-服务端发布版本,支持TCP,Websocket链接,只需修改少量的配置即可快速部署,请严格按照项目部署目录配置环境,这样能保证你快速部署成功.详情请进入官网https://www.fsharechat.cn 查看具体的部署说明,技术支持商业合作请找官方技术支持
Stars: ✭ 28 (+12%)
Mutual labels:  springboot
Ant-Live
【基于JAVA开发的在线直播平台】Ant Live;腾讯云直播服务;直播鉴黄;礼物;支付宝充值提现;弹幕聊天室;前端后分离;SpringBoot;直播平台开发;
Stars: ✭ 28 (+12%)
Mutual labels:  springboot
Logistics-admin
SpringBoot+adminlte+maven的物流公司管理系统
Stars: ✭ 61 (+144%)
Mutual labels:  springboot
mango
Core utility library & data connectors designed for simpler usage in Scala
Stars: ✭ 41 (+64%)
Mutual labels:  hbase
darwin
Avro Schema Evolution made easy
Stars: ✭ 26 (+4%)
Mutual labels:  hbase
taotao-cloud-project
微服务开发脚手架,包括大数据模块、微服务模块、前端模块。基于Spring Cloud Alibaba的微服务架构。提供技术框架的基础能力的封装,减少开发工作,只关注业务,包含了工作以来的工作总结和技术沉淀
Stars: ✭ 76 (+204%)
Mutual labels:  springboot
grpc-apm-spring-boot-starter
Spring boot starter for gRPC framework with Elastic APM
Stars: ✭ 18 (-28%)
Mutual labels:  springboot
service-api
Report portal. Main API Service
Stars: ✭ 35 (+40%)
Mutual labels:  springboot
qynat-spring-boot-starter
A springboot-starter that can achieve Intranet penetration. 一款可以实现内网穿透的springboot-starter。
Stars: ✭ 65 (+160%)
Mutual labels:  springboot
FullStack-Angular-SpringBoot
Customer Relationship Managment [Full-stack Web Development using Angular & SpringBoot (RestFull API)]
Stars: ✭ 48 (+92%)
Mutual labels:  springboot
opsli-ui
OPSLI 快速开发平台基于springboot、vue、element-ui ,项目采用前后端分离架构,热插拔式业务模块与插件扩展性高 ,代码简洁,功能丰富,开箱即用
Stars: ✭ 76 (+204%)
Mutual labels:  springboot
ChuyunBlog
SpringBoot+MyBatis+Thymeleaf 博客系统
Stars: ✭ 147 (+488%)
Mutual labels:  springboot
zkspringboot
ZK - Spring Boot integration
Stars: ✭ 38 (+52%)
Mutual labels:  springboot
energy-management-sys communication-sub-sys
基于DLT645-2007/DLT645-1997协议的智能电表数据采集系统。借助于高性能的网络编程框架Netty开发,系统可以和智能电表交互并把设备传上来的数据实时写进数据库(目前只支持MySQL)。
Stars: ✭ 27 (+8%)
Mutual labels:  springboot
jsf-primefaces
JSF Primefaces Tutorials
Stars: ✭ 93 (+272%)
Mutual labels:  springboot

#SpringBootHbase

HbaseService基础类封装

封装了一个简易的Hbase-ORM框架

  • 接口
  <T> List<T> findByExample(Map<String, CompareOp[]> filter, Object t ,Class<T> classz);
  <T> List<T> findByExample(Scan scan,Class<T> classz);
  <T> void save(T t,Class<T> classz);
  • 使用范列
    /**构造查询条件**/
    
    SCnMadeInChina sCnMadeInChinaQuery = new SCnMadeInChina();
    sCnMadeInChinaQuery.setAppendTime("1513158597822");
    Map<String , CompareOp[]> filterParam =  new HashMap<>();
    filterParam.put("appendTime", new CompareOp[]{CompareOp.GREATER_OR_EQUAL});
    
    //查询
    List<SCnMadeInChina> madeInChinaList = hbaseService.findByExample(filterParam,sCnMadeInChinaQuery,SCnMadeInChina.class);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].