NettoSphere
- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/Atmosphere/nettosphere
软件介绍
NettoSphere 是一个 Java 的 WebSocket 和 HTTP 服务器,基于 Atmosphere 和 Netty 框架构建,可轻松创建 WebSocket 和 Comet 的应用程序。
示例代码:
val server : NettoSphereServer = new NettyAtmosphereServer.Builder.config( new Config.Builder() .host("127.0.0.1") .port(8080) .resource(classOf[MyWebSocketEchoProtocol]) .build) .build.start
