All Projects → zhoumengkang → Netty Restful Server

zhoumengkang / Netty Restful Server

Licence: mit
A light restful server built on netty. If you are preparing for leaning java or netty, it's a nice gift for you.

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Netty Restful Server

Distributedid
基于twitter的雪花算法(SnowFlake)来产生分布式ID,支持SDK、HTTP方式接入
Stars: ✭ 273 (-32.59%)
Mutual labels:  netty
Clusterdevicecontrolplatform
Java & Vue.js 全栈「集群设备管理云平台『后端部分』」,使用 Spring Boot、Netty 搭建 TCP 服务器与上万设备的集群通信,基于 JavaFX 的 GUI 应用程序模拟上万台设备的行为,并可对服务器进行压力测试。
Stars: ✭ 330 (-18.52%)
Mutual labels:  netty
Atmosphere
Realtime Client Server Framework for the JVM, supporting WebSockets with Cross-Browser Fallbacks
Stars: ✭ 3,552 (+777.04%)
Mutual labels:  netty
Naivechat
🎭 本项目是作者小傅哥使用JavaFx、Netty4.x、SpringBoot、Mysql等技术栈和偏向于DDD领域驱动设计方式,搭建的仿桌面版微信实现通信核心功能。课程文章已发布到GitChat专栏,欢迎购买。如果本项目能为您提供帮助,请给予支持(关注、⭐️Star、分享)!
Stars: ✭ 290 (-28.4%)
Mutual labels:  netty
Vertx Zero
Zero Framework:http://www.vertxup.cn
Stars: ✭ 320 (-20.99%)
Mutual labels:  netty
Summer
这是一个支持分布式和集群的java游戏服务器框架,可用于开发棋牌、回合制等游戏。基于netty实现高性能通讯,支持tcp、http、websocket等协议。支持消息加解密、攻击拦截、黑白名单机制。封装了redis缓存、mysql数据库的连接与使用。轻量级,便于上手。
Stars: ✭ 336 (-17.04%)
Mutual labels:  netty
ship-gate
Use SpringWebFlux,Netty and Nacos to build high performance,responsive API gateways.
Stars: ✭ 138 (-65.93%)
Mutual labels:  netty
Groza
开源物联网平台 - 物联网解决方案的设备管理,数据收集,处理
Stars: ✭ 364 (-10.12%)
Mutual labels:  netty
Mpush
MPush开源实时消息推送系统
Stars: ✭ 3,455 (+753.09%)
Mutual labels:  netty
Kotlin Ktor Exposed Starter
Starter RESTful service with websocket notifications using Kotlin, Ktor and Exposed with H2, HikariCP and FlyWay
Stars: ✭ 343 (-15.31%)
Mutual labels:  netty
Redant
A lightweight distributed web container based on Netty 一个基于Netty的轻量级Web容器
Stars: ✭ 295 (-27.16%)
Mutual labels:  netty
Socket Mqtt
基于Netty+MQTT的高性能推送服务框架。支持普通Socket、MQTT、MQTT web socket协议。非常方便接入上层业务实现推送业务。
Stars: ✭ 314 (-22.47%)
Mutual labels:  netty
Remote Desktop Control
远程桌面控制(Spring+Netty+Swing)
Stars: ✭ 340 (-16.05%)
Mutual labels:  netty
Armeria
Your go-to microservice framework for any situation, from the creator of Netty et al. You can build any type of microservice leveraging your favorite technologies, including gRPC, Thrift, Kotlin, Retrofit, Reactive Streams, Spring Boot and Dropwizard.
Stars: ✭ 3,392 (+737.53%)
Mutual labels:  netty
Netty Study
Netty 4 的一些技术栈示例代码并辅以博文讲解。主要包括入门的demo,粘包和拆包解决办法,心跳测试,http服务的实现,client重连机制,TCP滑动窗口、protobuf协议传输等相关技术。
Stars: ✭ 353 (-12.84%)
Mutual labels:  netty
netty-game-server
Use netty with springboot to program game server
Stars: ✭ 19 (-95.31%)
Mutual labels:  netty
Spring Boot Demo
spring boot demo 是一个Spring Boot、Spring Cloud的项目示例,根据市场主流的后端技术,共集成了30+个demo,未来将持续更新。该项目包含helloworld(快速入门)、web(ssh项目快速搭建)、aop(切面编程)、data-redis(redis缓存)、quartz(集群任务实现)、shiro(权限管理)、oauth2(四种认证模式)、shign(接口参数防篡改重放)、encoder(用户密码设计)、actuator(服务监控)、cloud-config(配置中心)、cloud-gateway(服务网关)等模块
Stars: ✭ 323 (-20.25%)
Mutual labels:  netty
Im
仿QQ即时通讯系统服务端
Stars: ✭ 369 (-8.89%)
Mutual labels:  netty
Iot push
基于netty+mqtt3.1.1+springboot+jdk8 实现的 mqtt 服务端跟客户端
Stars: ✭ 353 (-12.84%)
Mutual labels:  netty
Mobileimsdk
一个原创移动端IM通信层框架,轻量级、高度提炼,历经8年、久经考验。可能是市面上唯一同时支持UDP+TCP+WebSocket三种协议的同类开源框架,支持iOS、Android、Java、H5,服务端基于Netty。
Stars: ✭ 3,864 (+854.07%)
Mutual labels:  netty

netty-restful-server

Build Status

A light and high performance restful server built on netty. If you are preparing for leaning java or netty, it's a nice gift for you.

Preview

project demo can be visited here:

1 . get user info

GET http://netty.restful.api.mengkang.net/user/1

2 . get user album info

GET http://netty.restful.api.mengkang.net/user/1/album/10?build=103

Version 1.1.0 (2016.01.07)

In this version,there is no database, so you can run it directly.

At first, java 8 should be supported in your server.

There's two way to run it.

1 . Run net.mengkang.demo.ServerLauncher in Intellij IDEA, Then you can visit

http://localhost:8080/user/1

http://localhost:8080/user/1/album/10?build=103

in your browser for testing.

2 . Anther way is using java command line.

Download the netty-restful-server-1.1.0.zip and unzip it , then run it like this:

java -Dfile.encoding=UTF-8 -jar netty-restful-server-1.0-SNAPSHOT.jar
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].