All Projects → whiney → Springboot Elasticsearch

whiney / Springboot Elasticsearch

基于springboot的web项目,通过elasticsearch提供的Java API 进行查询操作.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Springboot Elasticsearch

Great Big Example Application
A full-stack example app built with JHipster, Spring Boot, Kotlin, Angular 4, ngrx, and Webpack
Stars: ✭ 899 (+431.95%)
Mutual labels:  elasticsearch, spring-boot, demo
Spring Boot Examples
🥗​ Spring/SpringBoot/SpringCloud 实践学习案例,从入门到精通,持续更新中,欢迎交流学习🍺 !
Stars: ✭ 110 (-34.91%)
Mutual labels:  elasticsearch, spring-boot
Vaadin Microservices Demo
A microservices example developed with Spring Cloud and Vaadin
Stars: ✭ 108 (-36.09%)
Mutual labels:  spring-boot, demo
Taobaokeapi
淘宝客API演示
Stars: ✭ 128 (-24.26%)
Mutual labels:  api, demo
Microservices Sample
Sample project to create an application using microservices architecture
Stars: ✭ 167 (-1.18%)
Mutual labels:  elasticsearch, spring-boot
Spring Cloud Microservices Development
Spring Cloud Microservices Development.《Spring Cloud 微服务架构开发实战》
Stars: ✭ 106 (-37.28%)
Mutual labels:  elasticsearch, spring-boot
Laravel Hackathon Starter
💻 A hackathon/MVP boilerplate for laravel web applications. Start your hackathons without hassle.
Stars: ✭ 1,589 (+840.24%)
Mutual labels:  api, demo
Springboot Templates
springboot和dubbo、netty的集成,redis mongodb的nosql模板, kafka rocketmq rabbit的MQ模板, solr solrcloud elasticsearch查询引擎
Stars: ✭ 100 (-40.83%)
Mutual labels:  elasticsearch, spring-boot
Spring Boot Demo
Spring Boot的基础教程,由浅入深,一步一步学习Spring Boot,最后学到的不单单是基础!Spring Cloud基础教程请看:https://github.com/roncoo/spring-cloud-demo
Stars: ✭ 1,687 (+898.22%)
Mutual labels:  spring-boot, demo
Flutter Tiktok Ui Api Clone
Flutter Tiktok UI API Clone
Stars: ✭ 139 (-17.75%)
Mutual labels:  api, demo
Sofang
基于Spring Boot+ElasticSearch实现搜房网
Stars: ✭ 146 (-13.61%)
Mutual labels:  elasticsearch, spring-boot
Spring Boot 2.x Examples
Spring Boot 2.x code examples
Stars: ✭ 104 (-38.46%)
Mutual labels:  elasticsearch, spring-boot
Legacy Search
Demo project showing how to add elasticsearch to a legacy application.
Stars: ✭ 103 (-39.05%)
Mutual labels:  elasticsearch, demo
Mall
mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。
Stars: ✭ 54,797 (+32324.26%)
Mutual labels:  elasticsearch, spring-boot
Whatsmars
Java生态研究(Spring Boot + Redis + Dubbo + RocketMQ + Elasticsearch)🔥🔥🔥🔥🔥
Stars: ✭ 1,389 (+721.89%)
Mutual labels:  elasticsearch, spring-boot
Microservice Monitoring
Monitor your Spring Boot application with the Elastic Stack all around
Stars: ✭ 114 (-32.54%)
Mutual labels:  elasticsearch, spring-boot
Spring Boot Leaning
Spring Boot 2.X 最全课程代码
Stars: ✭ 2,008 (+1088.17%)
Mutual labels:  elasticsearch, spring-boot
Pybbs
更实用的Java开发的社区(论坛),Better use of Java development community (forum)
Stars: ✭ 1,242 (+634.91%)
Mutual labels:  elasticsearch, spring-boot
Zzdj dhcp
一个可以自动同步DHCP租用信息到数据库的微服务
Stars: ✭ 89 (-47.34%)
Mutual labels:  elasticsearch, spring-boot
Spring Boot Quick
🌿 基于springboot的快速学习示例,整合自己遇到的开源框架,如:rabbitmq(延迟队列)、Kafka、jpa、redies、oauth2、swagger、jsp、docker、spring-batch、异常处理、日志输出、多模块开发、多环境打包、缓存cache、爬虫、jwt、GraphQL、dubbo、zookeeper和Async等等📌
Stars: ✭ 1,819 (+976.33%)
Mutual labels:  elasticsearch, spring-boot

springboot-elasticsearch

基于springboot的web项目,通过elasticsearch提供的Java API 进行查询操作.

起因

项目在一个查询要在亚秒级计算(分组、累加、平均)大量数据的结果。官方提供的API过于简单,自己在做项目中遇到了一些坑,并总结了一些API的使用,简单分享一下。

服务版本

首先安装一个自己的elasticsearch服务

RPM方式安装并启动访问

sudo rpm --install xxx.rpm

sudo service elasticsearch start

访问:xxxx:9200

{
  "name" : "X5m9ca9",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "Llayl6QoQUSl4JcMIt0L5g",
  "version" : {
    "number" : "5.5.1",
    "build_hash" : "19c13d0",
    "build_date" : "2017-07-18T20:44:24.823Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}

安装启动完毕

程序

demo是基于springboot快速构建了一个web应用,通过单元测试的方式,来验证方法

参考链接

Search API

BulkProcessor

有一些坑是我领导踩得,部分代码已得授权。

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].