当前位置: 首页 > news >正文

中小型网站建设多少钱糟糕的网站设计

中小型网站建设多少钱,糟糕的网站设计,短链接生成网址,前端是啥1 编码和解码编写网络应用程序时#xff0c;因为数据在网络传输的都是二进制字节码数据#xff0c;在发送数据时进行编码#xff0c;在接受数据时进行解码codec#xff08;编码器#xff09;的组成部分有2个#xff1a;decoder#xff08;解码器#xff09;和encoder因为数据在网络传输的都是二进制字节码数据在发送数据时进行编码在接受数据时进行解码codec编码器的组成部分有2个decoder解码器和encoder编码器。encoder负责将数据转换为字节码数据而decoder负责将字节码数据转为业务数据2 Netty的编码和解码机制问题Netty提供的编码器StringEncoder对字符串数据进行编码ObjectEncoder对java对象进行编码Netty提供的解码器StringDecoder对字符串数据进行编码ObjectDecoder对java对象进行编码Netty本身自带的ObjectDecoder和ObjectEncoder可以实现用来对JOPO对象或各种业务对象的编码和解码。底层使用的依然是Java序列化技术而java序列化技术本身就存在问题无法跨语言序列化的体积太大是二进制编码的5倍多序列化的性能太低所以就出现了Google的Protobuf。3 ProtoBuf3.1基本介绍1) ProtoBuf是Google发布的开源项目是一种轻便高效的结构化数据存储格式可以用于结构化数据串行化,或者说序列化它很适合做数据存储或RPC[远程过程调用]数据交换格式目前很多公司正在由httpjson-tcpprotobufProtobuf是以message的方式来管理数据的支持跨平台跨语言即客户端和服务端可以是不同语言编写的高性能可读性高使用protobuf编译器能够自动生成代码ProtoBuf是将类的定义使用.protobuf文件进行描述注意在idea中编写.proto文件时会自动提示是否下载.protot编写插件可以让语法高亮然后通过.protoc.exe编译器根据.protp自动生成java文件3.2 ProtoBuf生成类单种类型实例要求客户端发送一个Student PoJo对象到服务器通过ProtoBuf编码服务端接收Student PoJo对象并显示信息通过ProtoBuf解码步骤一在maven中引入ProtoBuf坐标下载相关jar包dependency groupIdcom.google.protobuf/groupId artifactIdprotobuf-java/artifactId version3.7.1/version/dependency步骤二github下载相关protoc文件注意下载文件需和pom文件中版本对应否则生成java文件时会报错下载链接https://github.com/protocolbuffers/protobuf/tags然后进行相关idea配置https://blog.csdn.net/Xin_101/article/details/123332526?步骤三编写代码服务端public class NettyServer {public static void main(String[] args) throws Exception {//1.创建2个线程组bossGroup和workerGroup//2 bossGroup只是处理连接请求workerGroup真正的和客户端进行业务处理//3 两个都是无限循环NioEventLoopGroup bossGroup new NioEventLoopGroup();NioEventLoopGroup workerGroup new NioEventLoopGroup();try {//创建服务器端的启动对象配置参数ServerBootstrap bootstrap new ServerBootstrap();bootstrap.group(bossGroup,workerGroup)//设置两个线程组.channel(NioServerSocketChannel.class) //使用nioSocketChannel作为服务器的通道实现.option(ChannelOption.SO_BACKLOG,128)//设置线程队列得到连接.childOption(ChannelOption.SO_KEEPALIVE,true)//设置保持活动连接状态.childHandler(new ChannelInitializerSocketChannel() {//给pipeline设置处理器Overrideprotected void initChannel(SocketChannel ch) throws Exception {//向pipeline加入ProtobufDecoder,指定对哪种对象进行解码ch.pipeline().addLast(decoder,new ProtobufDecoder(StudentPOJO.Student.getDefaultInstance()));ch.pipeline().addLast(new NettyServerHandler());}});//给workerGroup的EventLoop对应的管道设置处理器System.out.println(....服务器 is ready...);//绑定一个端口并且同步生成了一个ChannelFuture对象//启动服务器并绑定端口ChannelFuture cf bootstrap.bind(6668).sync();//对关联通道进行监听cf.channel().closeFuture().sync();}finally {bossGroup.shutdownGracefully();workerGroup.shutdownGracefully();}}}服务端处理器public class NettyServerHandler extends ChannelInboundHandlerAdapter {//读取数据的事件这里读取客户端发送的消息/**** param ctx ChannelHandlerContext ctx:上下文对象含有管道pipeline通道channel地址* param msg 就是客户端发送的消息* throws Exception*/Overridepublic void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {//读取从客户端发送的StudentPojoStudentStudentPOJO.Student student (StudentPOJO.Student)msg;System.out.println(客户端发送的数据 idstudent.getId() 名字student.getName());}Overridepublic void channelReadComplete(ChannelHandlerContext ctx) throws Exception {ctx.writeAndFlush(Unpooled.copiedBuffer(LocalDateTime.now() :hello客户端~,CharsetUtil.UTF_8));}//处理异常一般需要关闭通道Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {ctx.close();}}客户端public class NettyClient {public static void main(String[] args) throws Exception{//客户端需要一个循环组NioEventLoopGroup group new NioEventLoopGroup();try {//创建客户端的启动对象//注意客户端使用的是Bootstrap不是ServerBootstrapBootstrap bootstrap new Bootstrap();bootstrap.group(group) //设置线程组.channel(NioSocketChannel.class) //设置客户端通道的实现类.handler(new ChannelInitializerSocketChannel() {Overrideprotected void initChannel(SocketChannel ch) throws Exception {//在pipeline中加入ProtobufEncoderch.pipeline().addLast(encoder,new ProtobufEncoder());ch.pipeline().addLast(new NettyClientHandler()); //加入自己的处理器}});System.out.println(客户端 ok ...);//启动客户端连接服务器 ChannelFuture涉及到netty的异步模型ChannelFuture channelFuture bootstrap.connect(127.0.0.1, 6668).sync();//给关闭通道进行监听channelFuture.channel().closeFuture().sync();}finally {group.shutdownGracefully();}}}客户端处理器public class NettyClientHandler extends ChannelInboundHandlerAdapter {//当通道就绪会触发该方法Overridepublic void channelActive(ChannelHandlerContext ctx) throws Exception {//发送一个Student对象到服务器StudentPOJO.Student student StudentPOJO.Student.newBuilder().setId(4).setName(王五).build();ctx.writeAndFlush(student);}Overridepublic void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {ByteBuf buf (ByteBuf)msg;System.out.println(服务器回复的消息:buf.toString(CharsetUtil.UTF_8));System.out.println(服务器的地址:ctx.channel().remoteAddress());}Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {cause.printStackTrace();ctx.close();}}如果不想在channelRead()方法中进行强转可以将处理器实现SimpleChannelInboundHandler类型从而实现channelRead0方法proto文件syntax proto3; //版本 option java_outer_classname StudentPOJO; //生成的外部类类名同时也是文件名 //protobuf使用message管理数据 message Student{ //会在StudentPOJO 外部类生成一个内部类 Student //他是真正发送的POJO对象int32 id 1; //Student类中有一个属性id 类型为int32(protobuf类型) 注意: 1表示属性序号 不是值string name 2;} 将proto文件转为java文件结果如下先启动客户端再次启动服务端客户端控制台服务端控制台发现已经用protobuf实现了数据的传输。3.3 ProtoBuf生成类多种类型实例要求客户端发送一个Student PoJo \Worker PoJo对象到服务器通过ProtoBuf编码服务端接收Student PoJo\Worker PoJo对象并显示信息通过ProtoBuf解码服务端代码;package com.liubujun.codec2;import com.liubujun.codec.StudentPOJO; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelInitializer; import io.netty.channel.ChannelOption; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketChannel; import io.netty.channel.socket.nio.NioServerSocketChannel; import io.netty.handler.codec.protobuf.ProtobufDecoder;/*** Author: liubujun* Date: 2023/2/15 10:24*/public class NettyServer {public static void main(String[] args) throws Exception {//1.创建2个线程组bossGroup和workerGroup//2 bossGroup只是处理连接请求workerGroup真正的和客户端进行业务处理//3 两个都是无限循环NioEventLoopGroup bossGroup new NioEventLoopGroup();NioEventLoopGroup workerGroup new NioEventLoopGroup();try {//创建服务器端的启动对象配置参数ServerBootstrap bootstrap new ServerBootstrap();bootstrap.group(bossGroup,workerGroup)//设置两个线程组.channel(NioServerSocketChannel.class) //使用nioSocketChannel作为服务器的通道实现.option(ChannelOption.SO_BACKLOG,128)//设置线程队列得到连接.childOption(ChannelOption.SO_KEEPALIVE,true)//设置保持活动连接状态.childHandler(new ChannelInitializerSocketChannel() {//给pipeline设置处理器Overrideprotected void initChannel(SocketChannel ch) throws Exception {//向pipeline加入ProtobufDecoder,指定对哪种对象进行解码ch.pipeline().addLast(decoder,new ProtobufDecoder(MyDataInfo.MyMessage.getDefaultInstance()));ch.pipeline().addLast(new NettyServerHandler());}});//给workerGroup的EventLoop对应的管道设置处理器System.out.println(....服务器 is ready...);//绑定一个端口并且同步生成了一个ChannelFuture对象//启动服务器并绑定端口ChannelFuture cf bootstrap.bind(6668).sync();//对关联通道进行监听cf.channel().closeFuture().sync();}finally {bossGroup.shutdownGracefully();workerGroup.shutdownGracefully();}}} 服务端处理器package com.liubujun.codec2;import com.liubujun.codec.StudentPOJO; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; import io.netty.util.CharsetUtil;import java.time.LocalDateTime;/*** Author: liubujun* Date: 2023/2/15 10:25*/public class NettyServerHandler extends SimpleChannelInboundHandlerMyDataInfo.MyMessage {Overrideprotected void channelRead0(ChannelHandlerContext channelHandlerContext, MyDataInfo.MyMessage msg) throws Exception {//根据dataType 来显示不同的信息MyDataInfo.MyMessage.DataType dataType msg.getDataType();if (dataType MyDataInfo.MyMessage.DataType.StudentType){MyDataInfo.Student student msg.getStudent();System.out.println(学生idstudent.getId() 学生名字student.getName());}else if (dataType MyDataInfo.MyMessage.DataType.WorkerType){MyDataInfo.Worker worker msg.getWorker();System.out.println(工人年纪worker.getAge() 工人姓名worker.getName());}else {System.out.println(传输的类型不正确);}}Overridepublic void channelReadComplete(ChannelHandlerContext ctx) throws Exception {ctx.writeAndFlush(Unpooled.copiedBuffer(LocalDateTime.now() :hello客户端~, CharsetUtil.UTF_8));}//处理异常一般需要关闭通道Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {ctx.close();}}客户端package com.liubujun.codec2;import io.netty.bootstrap.Bootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelInitializer; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketChannel; import io.netty.channel.socket.nio.NioSocketChannel; import io.netty.handler.codec.protobuf.ProtobufEncoder;/*** Author: liubujun* Date: 2023/2/15 10:27*/public class NettyClient {public static void main(String[] args) throws Exception{//客户端需要一个循环组NioEventLoopGroup group new NioEventLoopGroup();try {//创建客户端的启动对象//注意客户端使用的是Bootstrap不是ServerBootstrapBootstrap bootstrap new Bootstrap();bootstrap.group(group) //设置线程组.channel(NioSocketChannel.class) //设置客户端通道的实现类.handler(new ChannelInitializerSocketChannel() {Overrideprotected void initChannel(SocketChannel ch) throws Exception {//在pipeline中加入ProtobufEncoderch.pipeline().addLast(encoder,new ProtobufEncoder());ch.pipeline().addLast(new NettyClientHandler()); //加入自己的处理器}});System.out.println(客户端 ok ...);//启动客户端连接服务器 ChannelFuture涉及到netty的异步模型ChannelFuture channelFuture bootstrap.connect(127.0.0.1, 6668).sync();//给关闭通道进行监听channelFuture.channel().closeFuture().sync();}finally {group.shutdownGracefully();}}} 客户端处理器package com.liubujun.codec2;import com.liubujun.codec.StudentPOJO; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.util.CharsetUtil;import java.util.Random;/*** Author: liubujun* Date: 2023/2/15 10:28*/public class NettyClientHandler extends ChannelInboundHandlerAdapter {//当通道就绪会触发该方法Overridepublic void channelActive(ChannelHandlerContext ctx) throws Exception {//随机的发送Student 或者 Worker对象int random new Random().nextInt(3);MyDataInfo.MyMessage myMessage null;if (0 random){ //发送Student对象myMessage MyDataInfo.MyMessage.newBuilder().setDataType(MyDataInfo.MyMessage.DataType.StudentType).setStudent(MyDataInfo.Student.newBuilder().setId(5).setName(小飞棍来喽).build()).build();}else { //发送一个Worker对象myMessage MyDataInfo.MyMessage.newBuilder().setDataType(MyDataInfo.MyMessage.DataType.WorkerType).setWorker(MyDataInfo.Worker.newBuilder().setAge(5).setName(来了 老李).build()).build();}ctx.writeAndFlush(myMessage);}Overridepublic void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {ByteBuf buf (ByteBuf)msg;System.out.println(服务器回复的消息:buf.toString(CharsetUtil.UTF_8));System.out.println(服务器的地址:ctx.channel().remoteAddress());}Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {cause.printStackTrace();ctx.close();}} proto文件syntax proto3; option optimize_for SPEED; //加快解析 option java_package com.liubujun.codec2;//指定生成到哪个包下 option java_outer_classname MyDataInfo; //外部类名称//proto可以使用message管理其它的message message MyMessage {//定义一个枚举类型enum DataType {StudentType 0; //在proto3中要求enum的编号从0开始WorkerType 1;}//用data_type来标识传的是哪一个枚举类型DataType data_type 1;//表示每次枚举类型最多只能出现其中一个节省空间oneof dataBody{Student student 2;Worker worker 3;} }message Student{int32 id 1; //Studnet类的属性string name 2; } message Worker{string name 1;int32 age 2; } 先启动服务端再启动多个客户端发现数据正常传输
http://www.ho-use.cn/article/10823910.html

相关文章:

  • PHP做的哪些大型网站广州网络公司
  • 昆明网站建设推广公司哪家好ae在线生成视频
  • 企业站模板大全郑州网络营销公司排名
  • 设计比较好的企业网站网站建设任职资格
  • 网站改版做301是啥意思 换域名孝感注册公司
  • 合肥网站建设讯息同一个ip网站太多 seo
  • 东莞网站如何制作中国企业网银怎么登录
  • 辽宁城乡建设厅网站学做古典家具网站
  • 用仿站工具做网站电话号码查询企业
  • 想在微信公众号上做网站链接上海网址一360导航
  • 什么是网站策划书如何搭建个人博客网站
  • 网站如何绑定域名江西企业网站建设电话
  • 基础网站建设代码如何建立学校网站
  • 企业网站建设维护合同书wordpress fifth
  • 宠物用品网站建设自己做的网站怎么放到外网上
  • 金属东莞网站建设技术支持品牌建设指导性意见
  • 网站设计改版深圳猪八戒网站建设
  • 长春网站建设方案详细wordpress什么主题好
  • 深圳极速网站建设服务上海市住房与城乡建设部网站
  • 南昌专业做网站公司网站建设吧个好
  • 怎么免费开网站建设工程检测网
  • 苏州住房和城乡建设局网站如何在网站上添加备案号
  • 什么网站做一手房比较好秦皇岛最新消息今天
  • 什么网站上做效果图可以赚钱杨小刀网站建设
  • 做网站的销售员电话话术嵌入式软件开发环境有哪些
  • 自己怎样做公司广告视频网站三门县正规营销型网站建设地址
  • 给公司做一个网站谷歌在线浏览器入口
  • 烟台百度网站推广近期新闻热点
  • 网站后端怎么做松江网站建设品划网络
  • seoyoon电商seo什么意思