版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
nettynetty是啥netty是jboss下的是开源项目。一个封装Socket的jar。可以快速开发高性能,高可靠的网络服务器与客户端程序。与apache下的mina是同一个作者(TrustinLee),并且是优化版。netty的优点1.开发简单,完整的Doc和用户样例,适用于不同的协议。2.基于灵活,可扩展的事件驱动模型。3.可靠soket支持,高度可定制的线程模型。4.更好的吞吐量,低延迟,节省资源,内部优化成熟,减少不必要的内存拷贝5.能与android环境运行良好。6.完整的SSL/TLS和STARTTLS的支持Netty整体架构
Netty组件
ChannelFactoryBossWorkerChannelChannelEventPipelineChannelContextHandlerSink
Server端核心类NioServerSocketChannelFactoryNioServerBossPool
NioWorkerPoolNioServerBossNioWorkerNioServerSocketChannelNioAcceptedSocketChannelDefaultChannelPipelineNioServerSocketPipelineSinkChannels
ChannelFactoryChannel工厂,很重要的类保存启动的相关参数
NioServerSocketChannelFactoryNioClientSocketChannelFactoryNioDatagramChannelFactory
这是Nio的,还有Oio和Local的
SelectorPool
Selector的线程池
NioServerBossPool默认线程数:1NioClientBossPool
1NioWorkerPool
2*ProcessorNioDatagramWorkerPool
Selector
选择器,很核心的组件
NioServerBossNioClientBossNioWorkerNioDatagramWorker
Channel
通道
NioServerSocketChannelNioClientSocketChannelNioAcceptedSocketChannelNioDatagramChannel
Sink负责和底层的交互如bind,Write,Close等
NioServerSocketPipelineSinkNioClientSocketPipelineSinkNioDatagramPipelineSink
Pipeline负责维护所有的Handler
ChannelContext一个Channel一个,是Handler和Pipeline的中间件
Handler对Channel事件的处理器
ChannelPipeline
优秀的设计----事件驱动
优秀的设计----线程模型
案例Server端:package;import;import.*;importty.channel.socket.nio.NioServerSocketChannelFactory;import;import;import;import;/***GodBlessYou!*Author:Fangniude*Date:2013-07-15*/publicclassNettyServer{publicstaticvoidmain(String[]args){ServerBootstrapbootstrap=newServerBootstrap(newNioServerSocketChannelFactory(Executors.newCachedThreadPool(),Executors.newCachedThreadPool()));//Setupthedefaulteventpipeline.bootstrap.setPipelineFactory(newChannelPipelineFactory(){@OverridepublicChannelPipelinegetPipeline()throwsException{returnChannels.pipeline(newStringDecoder(),newStringEncoder(),newServerHandler());}});//Bindandstarttoacceptincomingconnections.Channelbind=bootstrap.bind(newInetSocketAddress(8000));("Server已经启动,监听端口:"+bind.getLocalAddress()+",等待客户端注册。。。");}privatestaticclassServerHandlerextendsSimpleChannelHandler{@OverridepublicvoidmessageReceived(ChannelHandlerContextctx,MessageEvente)throwsException{if(e.getMessage()instanceofString){Stringmessage=(String)e.getMessage();("Client发来:"+message);e.getChannel().write("Server已收到刚发送的:"+message);("\n等待客户端输入。。。");}super.messageReceived(ctx,e);}@OverridepublicvoidexceptionCaught(ChannelHandlerContextctx,ExceptionEvente)throwsException{super.exceptionCaught(ctx,e);}@OverridepublicvoidchannelConnected(ChannelHandlerContextctx,ChannelStateEvente)throwsException{("有一个客户端注册上来了。。。");("Client:"+e.getChannel().getRemoteAddress());("Server:"+e.getChannel().getLocalAddress());("\n等待客户端输入。。。");super.channelConnected(ctx,e);}}}客户端:package;import;import.*;importty.channel.socket.nio.NioClientSocketChannelFactory;import;import;import;import;import;import;/***GodBlessYou!*Author:Fangniude*Date:2013-07-15*/publicclassNettyClient{publicstaticvoidmain(String[]args){//Configuretheclient.ClientBootstrapbootstrap=newClientBootstrap(newNioClientSocketChannelFactory(Executors.newCachedThreadPool(),Executors.newCachedThreadPool()));//Setupthedefaulteventpipeline.bootstrap.setPipelineFactory(newChannelPipelineFactory(){@OverridepublicChannelPipelinegetPipeline()throwsException{returnChannels.pipeline(newStringDecoder(),newStringEncoder(),newClientHandler());}});//Starttheconnectionattempt.ChannelFuturefuture=bootstrap.connect(newInetSocketAddress("localhost",8000));//Waituntiltheconnectionisclosedortheconnectionattemptfails.future.getChannel().getCloseFuture().awaitUninterruptibly();//Shutdownthreadpoolstoexit.bootstrap.releaseExternalResources();}privatestaticclassClientHandlerextendsSimpleChannelHandler{privateBufferedReadersin=newBufferedReader(newInputStreamReader(System.in));@OverridepublicvoidmessageReceived(ChannelHandlerContextctx,MessageEvente)throwsException{if(e.getMessage()instanceofString){Stringmessage=(String)e.getMessage();(message);e.getChannel().write(sin.readLine());("\n等待客户端输入。。。");}super.messageReceived(ctx,e);}@Overridepu
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- JJF 2177-2024防雷元件测试仪校准规范
- 2024年度年福建省高校教师资格证之高等教育学自测模拟预测题库
- 2024年度山西省高校教师资格证之高等教育心理学题库练习试卷B卷附答案
- 2024年橡胶、橡塑制品项目投资申请报告代可行性研究报告
- 2024年一氧化二氮项目资金筹措计划书代可行性研究报告
- 版权授权合同6篇
- 电动汽车集中充换电设施规划和优化运行研究综述
- 2024年度成品买卖协议范本
- 2024年产品销售代理化协议模板
- 2024年理想婚庆场地租赁协议模板
- 2024年2024年离婚协议书模板
- 福建省残疾人岗位精英职业技能竞赛(美甲师)参考试题及答案
- 广西邕衡教育名校联盟2024-2025学年高三上学期10月适应性检测试题 英语 含答案
- 江苏盐城射阳县招考聘用部分村(居)宣传文化管理员42人高频难、易错点500题模拟试题附带答案详解
- 中频炉维修合同模板
- 液化石油气泄漏应急处理考核试卷
- 过敏性休克完整版本
- 早产儿低体重儿护理课件
- 6《人大代表为人民》(第2课时)教学设计-2024-2025学年道德与法治六年级上册统编版
- 大宗贸易居间合同协议书
- 2024年借款展期合同参考样本(三篇)
评论
0/150
提交评论