当前位置:   article > 正文

Netty+Vue实现一个简单的web服务器_vue netty

vue netty

    最近一直在用Netty做一个数据服务,此服务的主要功能是接收客户端的Http请求并解析,经过业务逻辑处理后访问HBase获取数据流,然后返回给客户端。在服务的初始开发阶段,重心全部在如何设计Netty服务端的线程模型和缓存方案从而能更快的响应客户端请求,提高服务端的吞吐量,经过两个月的开发调试,性能基本达到要求。在核心功能基本可用后,一直在思考如何提供一个服务端的状态展现和管理动态页面。虽然说之前用过jsp和php开发过很简单的网站,当时仅限自己玩玩,没有工程应用,因此没有深入理解,后续的学习重心一直在服务端,并没有对服务端容器和网站这整个技术流程梳理清楚,所以一直不知道如何才能实现在基于Netty开发的服务器提供展现和管理动态页面。

    经过两个星期的上班时完善并压测核心功能,下班有空后了解Netty如何整合页面显示,慢慢感觉有了眉目。当使用浏览器访问一个URL时,服务端接收到请求,将此请求映射的html文件发送给浏览器,浏览器解析html文件,发现里面引用了一些静态文件,例如图片、javascript和css文件等,会继续向服务端请求这些静态文件,然后在浏览器端就显示出来了这个页面。之前一直纠结于tomcat下网站开发使用的jsp技术,始终没想明白当在浏览器中输入URL后,到底是如何显示出页面的。大体来说,浏览器发送Url后,tomcat会负责将jsp转换为html,然后将这个html发送给浏览器,我关心的重点应该是怎么渲染出html文件。经过了解,针对HTML生成前后端的不同,主要分为这么两种:

后端渲染(SSR、服务端渲染)

后端渲染HTML的情况下,浏览器会直接接收到经过服务器计算之后的呈现给用户的最终的HTML字符串,这里的计算就是服务器经过解析存放在服务器端的模板文件来完成的,在这种情况下,浏览器只进行了HTML的解析,以及通过操作系统提供的操纵显示器显示内容的系统调用在显示器上把HTML所代表的图像显示给用户。

前端渲染(SPA、单页面应用)

前端渲染就是指浏览器会从后端得到一些信息,这些信息或许是适用于题主所说的angularjs的模板文件,亦或是JSON等各种数据交换格式所包装的数据,甚至是直接的合法的HTML字符串。这些形式都不重要,重要的是,将这些信息组织排列形成最终可读的HTML字符串是由浏览器来完成的,在形成了HTML字符串之后,再进行显示。

    所以,如果我想让Netty能提供展现和管理动态页面,只需要选择是前端渲染还是后端渲染,然后响应浏览器的静态文件请求,将html、javascript、css、图片等静态文件发送给浏览器即可,浏览器会负责显示出页面。通过咨询同事,发现vue这种支持前端渲染,随即进行了尝试。相关代码如下:

VUE前端页面代码,index.html:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Vue.js 导航菜单</title>
  8. <script src="js/vue.min.js"></script>
  9. <style>
  10. *{
  11. margin:0;
  12. padding:0;
  13. }
  14. body{
  15. font:15px/1.3 'Open Sans', sans-serif;
  16. color: #5e5b64;
  17. text-align:center;
  18. }
  19. a, a:visited {
  20. outline:none;
  21. color:#389dc1;
  22. }
  23. a:hover{
  24. text-decoration:none;
  25. }
  26. section, footer, header, aside, nav{
  27. display: block;
  28. }
  29. /*-------------------------
  30. 菜鸟
  31. --------------------------*/
  32. nav{
  33. display:inline-block;
  34. margin:60px auto 45px;
  35. background-color:#5597b4;
  36. box-shadow:0 1px 1px #ccc;
  37. border-radius:2px;
  38. }
  39. nav a{
  40. display:inline-block;
  41. padding: 18px 30px;
  42. color:#fff !important;
  43. font-weight:bold;
  44. font-size:16px;
  45. text-decoration:none !important;
  46. line-height:1;
  47. text-transform: uppercase;
  48. background-color:transparent;
  49. -webkit-transition:background-color 0.25s;
  50. -moz-transition:background-color 0.25s;
  51. transition:background-color 0.25s;
  52. }
  53. nav a:first-child{
  54. border-radius:2px 0 0 2px;
  55. }
  56. nav a:last-child{
  57. border-radius:0 2px 2px 0;
  58. }
  59. nav.home .home,
  60. nav.projects .projects,
  61. nav.services .services,
  62. nav.contact .contact{
  63. background-color:#e35885;
  64. }
  65. p{
  66. font-size:22px;
  67. font-weight:bold;
  68. color:#7d9098;
  69. }
  70. p b{
  71. color:#ffffff;
  72. display:inline-block;
  73. padding:5px 10px;
  74. background-color:#c4d7e0;
  75. border-radius:2px;
  76. text-transform:uppercase;
  77. font-size:18px;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82. <div id="main">
  83. <!-- 激活的菜单样式为 active 类 -->
  84. <!-- 为了阻止链接在点击时跳转,我们使用了 "prevent" 修饰符 (preventDefault 的简称)。 -->
  85. <nav v-bind:class="active" v-on:click.prevent>
  86. <!-- 当菜单上的链接被点击时,我们调用了 makeActive 方法, 该方法在 Vue 实例中创建。 -->
  87. <a href="#" class="home" v-on:click="makeActive('home')">Home</a>
  88. <a href="#" class="projects" v-on:click="makeActive('projects')">Projects</a>
  89. <a href="#" class="services" v-on:click="makeActive('services')">Services</a>
  90. <a href="#" class="contact" v-on:click="makeActive('contact')">Contact</a>
  91. </nav>
  92. <!-- 以下 "active" 变量会根据当前选中的值来自动变换 -->
  93. <p>您选择了 <b>{{active}} 菜单</b></p>
  94. </div>
  95. <script>
  96. // 创建一个新的 Vue 实例
  97. var demo = new Vue({
  98. // DOM 元素,挂载视图模型
  99. el: '#main',
  100. // 定义属性,并设置初始值
  101. data: {
  102. active: 'home'
  103. },
  104. // 点击菜单使用的函数
  105. methods: {
  106. makeActive: function(item){
  107. // 模型改变,视图会自动更新
  108. this.active = item;
  109. }
  110. }
  111. });
  112. </script>
  113. </body>
  114. </html>

Netty后台静态服务器代码:

1、NettyStaticFileServerMain.java

  1. package com.me.io;
  2. import io.netty.bootstrap.ServerBootstrap;
  3. import io.netty.channel.ChannelFuture;
  4. import io.netty.channel.ChannelOption;
  5. import io.netty.channel.nio.NioEventLoopGroup;
  6. import io.netty.channel.socket.nio.NioServerSocketChannel;
  7. /**
  8. *
  9. * @author linjx
  10. *
  11. */
  12. public class NettyStaticFileServerMain {
  13. private static int httpListenPort = 6070;
  14. public static void main(String[] args) throws InterruptedException{
  15. NioEventLoopGroup boss = new NioEventLoopGroup();
  16. NioEventLoopGroup work = new NioEventLoopGroup();
  17. try {
  18. ServerBootstrap serverBootstrap = new ServerBootstrap();
  19. serverBootstrap.group(boss, work)
  20. .channel(NioServerSocketChannel.class)
  21. .childHandler(new NettyHttpInitializer())
  22. .option(ChannelOption.SO_BACKLOG, 128)
  23. .childOption(ChannelOption.SO_KEEPALIVE, true);
  24. ChannelFuture future = serverBootstrap.bind(httpListenPort).sync();
  25. future.channel().closeFuture().sync();
  26. }
  27. finally {
  28. work.shutdownGracefully();
  29. boss.shutdownGracefully();
  30. }
  31. }
  32. }

2、Netty的管道初始化器 NettyHttpInitializer.java:

  1. package com.me.io;
  2. import io.netty.channel.ChannelInitializer;
  3. import io.netty.channel.ChannelPipeline;
  4. import io.netty.channel.socket.SocketChannel;
  5. import io.netty.handler.codec.http.HttpObjectAggregator;
  6. import io.netty.handler.codec.http.HttpServerCodec;
  7. import io.netty.handler.stream.ChunkedWriteHandler;
  8. public class NettyHttpInitializer extends ChannelInitializer<SocketChannel> {
  9. @Override
  10. public void initChannel(SocketChannel ch) throws Exception {
  11. ChannelPipeline pipeline = ch.pipeline();
  12. //将请求和应答消息编码或解码为HTTP消息
  13. pipeline.addLast(new HttpServerCodec());
  14. //将HTTP消息的多个部分组合成一条完整的HTTP消息
  15. pipeline.addLast(new HttpObjectAggregator(64 * 1024));
  16. pipeline.addLast(new ChunkedWriteHandler());
  17. pipeline.addLast(new NettyHttpStaticFileHandler());
  18. }
  19. }

3、静态文件请求处理器,NettyHttpStaticFileHandler.java

  1. package com.me.io;
  2. import io.netty.channel.ChannelFuture;
  3. import io.netty.channel.ChannelHandlerContext;
  4. import io.netty.channel.ChannelProgressiveFuture;
  5. import io.netty.channel.ChannelProgressiveFutureListener;
  6. import io.netty.channel.DefaultFileRegion;
  7. import io.netty.channel.SimpleChannelInboundHandler;
  8. import io.netty.handler.codec.http.DefaultFullHttpResponse;
  9. import io.netty.handler.codec.http.DefaultHttpResponse;
  10. import io.netty.handler.codec.http.FullHttpRequest;
  11. import io.netty.handler.codec.http.FullHttpResponse;
  12. import io.netty.handler.codec.http.HttpChunkedInput;
  13. import io.netty.handler.codec.http.HttpHeaderNames;
  14. import io.netty.handler.codec.http.HttpHeaderValues;
  15. import io.netty.handler.codec.http.HttpResponse;
  16. import io.netty.handler.codec.http.HttpResponseStatus;
  17. import io.netty.handler.codec.http.HttpUtil;
  18. import io.netty.handler.codec.http.HttpVersion;
  19. import io.netty.handler.codec.http.LastHttpContent;
  20. import io.netty.handler.ssl.SslHandler;
  21. import io.netty.handler.stream.ChunkedFile;
  22. import java.io.File;
  23. import java.io.RandomAccessFile;
  24. import javax.activation.MimetypesFileTypeMap;
  25. /**
  26. *
  27. * @author linjx
  28. *
  29. */
  30. public class NettyHttpStaticFileHandler extends SimpleChannelInboundHandler<FullHttpRequest> {
  31. // 资源所在路径
  32. private static final String STATIC_LOCATION = "C:/Users/linjx/Desktop/code";
  33. @Override
  34. protected void channelRead0(ChannelHandlerContext ctx, FullHttpRequest request) throws Exception {
  35. // 获取URI
  36. String uri = request.uri();
  37. // 设置不支持favicon.ico文件
  38. if ("/favicon.ico".equals(uri)) {
  39. return;
  40. }
  41. // 根据路径地址构建文件
  42. String path = STATIC_LOCATION + uri;
  43. File html = new File(path);
  44. // 状态为1xx的话,继续请求
  45. if (HttpUtil.is100ContinueExpected(request)) {
  46. send100Continue(ctx);
  47. }
  48. // 当文件不存在的时候,将资源指向NOT_FOUND
  49. if (!html.exists()) {
  50. sendNotFound(ctx);
  51. return;
  52. }
  53. final RandomAccessFile randomAccessFile = new RandomAccessFile(html, "r");
  54. HttpResponse response = new DefaultHttpResponse(request.protocolVersion(), HttpResponseStatus.OK);
  55. // 设置文件格式内容
  56. if (path.endsWith(".html")){
  57. response.headers().set(HttpHeaderNames.CONTENT_TYPE, "text/html; charset=UTF-8");
  58. }else if(path.endsWith(".js")){
  59. response.headers().set(HttpHeaderNames.CONTENT_TYPE, "application/x-javascript");
  60. }else if(path.endsWith(".css")){
  61. response.headers().set(HttpHeaderNames.CONTENT_TYPE, "text/css; charset=UTF-8");
  62. }else{
  63. MimetypesFileTypeMap mimetypesFileTypeMap = new MimetypesFileTypeMap();
  64. response.headers().set(HttpHeaderNames.CONTENT_TYPE, mimetypesFileTypeMap.getContentType(path));
  65. }
  66. boolean keepAlive = HttpUtil.isKeepAlive(request);
  67. if (keepAlive) {
  68. response.headers().set(HttpHeaderNames.CONTENT_LENGTH, randomAccessFile.length());
  69. response.headers().set(HttpHeaderNames.CONNECTION, HttpHeaderValues.KEEP_ALIVE);
  70. }
  71. ctx.write(response);
  72. ChannelFuture sendFileFuture;
  73. ChannelFuture lastContentFuture;
  74. if (ctx.pipeline().get(SslHandler.class) == null) {
  75. sendFileFuture =
  76. ctx.write(new DefaultFileRegion(randomAccessFile.getChannel(), 0, randomAccessFile.length()), ctx.newProgressivePromise());
  77. // Write the end marker.
  78. lastContentFuture = ctx.writeAndFlush(LastHttpContent.EMPTY_LAST_CONTENT);
  79. } else {
  80. sendFileFuture =
  81. ctx.writeAndFlush(new HttpChunkedInput(new ChunkedFile(randomAccessFile, 0, randomAccessFile.length(), 10 * 1024 * 1024)),
  82. ctx.newProgressivePromise());
  83. // HttpChunkedInput will write the end marker (LastHttpContent) for us.
  84. lastContentFuture = sendFileFuture;
  85. }
  86. sendFileFuture.addListener(new ChannelProgressiveFutureListener() {
  87. @Override
  88. public void operationProgressed(ChannelProgressiveFuture future, long progress, long total) {
  89. if (total < 0) { // total unknown
  90. System.err.println(future.channel() + " Transfer progress: " + progress);
  91. } else {
  92. System.out.println(future.channel() + " Transfer progress: " + progress + " / " + total);
  93. }
  94. }
  95. @Override
  96. public void operationComplete(ChannelProgressiveFuture future) {
  97. System.out.println(future.channel() + " Transfer complete.");
  98. }
  99. });
  100. }
  101. private static void send100Continue(ChannelHandlerContext ctx) {
  102. FullHttpResponse response = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.CONTINUE);
  103. ctx.writeAndFlush(response);
  104. }
  105. private static void sendNotFound(ChannelHandlerContext ctx){
  106. FullHttpResponse response = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.NOT_FOUND);
  107. response.headers().set(HttpHeaderNames.CONTENT_LENGTH, 0);
  108. ctx.writeAndFlush(response);
  109. }
  110. }

   运行结果如下:

    启动Netty服务器后,在浏览器中输入url后,便可以显示出经过vue前端渲染出比较好看的页面了。页面与netty服务端的数据交互可以使用ajax。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/404315
推荐阅读
相关标签
  

闽ICP备14008679号