从零开始手写mmo游戏从框架到爆炸(五)— 集成springboot

        算了,放弃挣扎了,笔者写了一些代码,发现还是绕不过springboot,或者说自己来进行依赖管理最后肯定会爆炸的。同时方便后续接入第三方框架,咱们还是老老实实的接入springboot框架吧。

父pom引入parent依赖:

    <parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.3.3.RELEASE</version><relativePath/></parent>

eternity-server增加依赖:

    <dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>com.loveprogrammer</groupId><artifactId>eternity-core</artifactId><version>1.0-SNAPSHOT</version></dependency></dependencies>

修改eternity-server启动类:

package com.loveprogrammer;import com.loveprogrammer.base.factory.ServerBootstrapFactory;
import com.loveprogrammer.base.factory.ServerChannelFactory;
import com.loveprogrammer.exception.ServerException;
import com.loveprogrammer.netty.simple.SocketServer;
import com.loveprogrammer.netty.start.BasicServer;
import com.loveprogrammer.netty.start.IServer;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.Channel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;/*** Hello world!**/
@SpringBootApplication
public class EternityServerMain
{// 为了保证使用时,不需要每次都去创建logger 对象,我们声明静态常量public static final Logger LOGGER = LoggerFactory.getLogger(EternityServerMain.class);public static void main( String[] args ){LOGGER.info( "Hello World!" );// 最基本的启动方法
//        try {
//            LOGGER.info("开始启动Socket服务器...");
//            new SocketServer().run();
//        } catch (Exception e) {
//            LOGGER.error( "服务器启动失败",e);
//        }// 工厂模式启动方法
//        try {
//            Channel channel = ServerChannelFactory.createAcceptorChannel();
//            channel.closeFuture().sync();
//        } catch (Exception e) {
//            LOGGER.error( "服务器启动失败",e);
//        }SpringApplication.run(EternityServerMain.class, args);System.out.println("(♥◠‿◠)ノ゙  springboot启动成功   ლ(´ڡ`ლ)゙  \n");// 启动类启动try {IServer server = new BasicServer();server.start();} catch (Exception e) {LOGGER.error( "服务器启动失败",e);}}
}

 增加配置文件 application.yml:

server:port: 8083
logging:level:com.loveprogrammer: debugorg.springframework: warnio.netty: debug

启动日志如下:

15:11:17.181 [main] INFO com.loveprogrammer.EternityServerMain - Hello World!.   ____          _            __ _ _/\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \\\/  ___)| |_)| | | | | || (_| |  ) ) ) )'  |____| .__|_| |_|_| |_\__, | / / / /=========|_|==============|___/=/_/_/_/:: Spring Boot ::        (v2.3.3.RELEASE)2024-02-05 15:11:17.476  INFO 12648 --- [           main] com.loveprogrammer.EternityServerMain    : Starting EternityServerMain on DESKTOP-0VA8RF8 with PID 12648 (F:\gitee\game\eternity-online\eternity-server\target\classes started by admin in F:\gitee\game\eternity-online)
2024-02-05 15:11:17.477 DEBUG 12648 --- [           main] com.loveprogrammer.EternityServerMain    : Running with Spring Boot v2.3.3.RELEASE, Spring v5.2.8.RELEASE
2024-02-05 15:11:17.477  INFO 12648 --- [           main] com.loveprogrammer.EternityServerMain    : No active profile set, falling back to default profiles: default
2024-02-05 15:11:17.947  INFO 12648 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-02-05 15:11:17.947  INFO 12648 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.37]
2024-02-05 15:11:18.102  INFO 12648 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-02-05 15:11:18.292  INFO 12648 --- [           main] com.loveprogrammer.EternityServerMain    : Started EternityServerMain in 1.047 seconds (JVM running for 1.408)
(♥◠‿◠)ノ゙  springboot启动成功   ლ(´ڡ`ლ)゙  2024-02-05 15:11:18.295  INFO 12648 --- [           main] c.loveprogrammer.base.bean.ServerConfig  : **************Server INFO******************
2024-02-05 15:11:18.295  INFO 12648 --- [           main] c.loveprogrammer.base.bean.ServerConfig  : protocolType  : TCP
2024-02-05 15:11:18.295  INFO 12648 --- [           main] c.loveprogrammer.base.bean.ServerConfig  : port          : 8088
2024-02-05 15:11:18.295  INFO 12648 --- [           main] c.loveprogrammer.base.bean.ServerConfig  : channelType   : NIO
2024-02-05 15:11:18.295  INFO 12648 --- [           main] c.loveprogrammer.base.bean.ServerConfig  : **************Server INFO******************
2024-02-05 15:11:18.298 DEBUG 12648 --- [           main] i.n.u.i.logging.InternalLoggerFactory    : Using SLF4J as the default logging framework
2024-02-05 15:11:18.301 DEBUG 12648 --- [           main] i.n.channel.MultithreadEventLoopGroup    : -Dio.netty.eventLoopThreads: 16
2024-02-05 15:11:18.306 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : java.nio.Buffer.address: available
2024-02-05 15:11:18.306 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : sun.misc.Unsafe.theUnsafe: available
2024-02-05 15:11:18.306 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : sun.misc.Unsafe.copyMemory: available
2024-02-05 15:11:18.307 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : direct buffer constructor: available
2024-02-05 15:11:18.307 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : java.nio.Bits.unaligned: available, true
2024-02-05 15:11:18.307 DEBUG 12648 --- [           main] i.n.util.internal.PlatformDependent0     : java.nio.DirectByteBuffer.<init>(long, int): available
2024-02-05 15:11:18.307 DEBUG 12648 --- [           main] io.netty.util.internal.Cleaner0          : java.nio.ByteBuffer.cleaner(): available
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : Platform: Windows
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : Java version: 8
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : -Dio.netty.noUnsafe: false
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : sun.misc.Unsafe: available
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : -Dio.netty.noJavassist: false
2024-02-05 15:11:18.308 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : Javassist: unavailable
2024-02-05 15:11:18.309 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : You don't have Javassist in your class path or you don't have enough permission to load dynamically generated classes.  Please check the configuration for better performance.
2024-02-05 15:11:18.309 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : -Dio.netty.tmpdir: C:\Users\admin\AppData\Local\Temp (java.io.tmpdir)
2024-02-05 15:11:18.309 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : -Dio.netty.bitMode: 64 (sun.arch.data.model)
2024-02-05 15:11:18.309 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : -Dio.netty.noPreferDirect: false
2024-02-05 15:11:18.309 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : io.netty.maxDirectMemory: 3806855168 bytes
2024-02-05 15:11:18.315 DEBUG 12648 --- [           main] io.netty.channel.nio.NioEventLoop        : -Dio.netty.noKeySetOptimization: false
2024-02-05 15:11:18.315 DEBUG 12648 --- [           main] io.netty.channel.nio.NioEventLoop        : -Dio.netty.selectorAutoRebuildThreshold: 512
2024-02-05 15:11:18.317 DEBUG 12648 --- [           main] i.netty.util.internal.PlatformDependent  : org.jctools-core.MpscChunkedArrayQueue: available
2024-02-05 15:11:18.334  INFO 12648 --- [           main] c.l.base.factory.ServerChannelFactory    : 创建Server...
2024-02-05 15:11:18.337 DEBUG 12648 --- [           main] io.netty.channel.DefaultChannelId        : -Dio.netty.processId: 12648 (auto-detected)
2024-02-05 15:11:18.338 DEBUG 12648 --- [           main] io.netty.util.NetUtil                    : -Djava.net.preferIPv4Stack: false
2024-02-05 15:11:18.338 DEBUG 12648 --- [           main] io.netty.util.NetUtil                    : -Djava.net.preferIPv6Addresses: false
2024-02-05 15:11:18.373 DEBUG 12648 --- [           main] io.netty.util.NetUtil                    : Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1)
2024-02-05 15:11:18.374 DEBUG 12648 --- [           main] io.netty.util.NetUtil                    : \proc\sys\net\core\somaxconn: 200 (non-existent)
2024-02-05 15:11:18.411 DEBUG 12648 --- [           main] io.netty.channel.DefaultChannelId        : -Dio.netty.machineId: b4:2e:99:ff:fe:84:c1:cf (auto-detected)
2024-02-05 15:11:18.412 DEBUG 12648 --- [           main] i.netty.util.internal.ThreadLocalRandom  : -Dio.netty.initialSeedUniquifier: 0xc160f6aba52ef4a2
2024-02-05 15:11:18.417 DEBUG 12648 --- [           main] io.netty.util.ResourceLeakDetector       : -Dio.netty.leakDetection.level: simple
2024-02-05 15:11:18.417 DEBUG 12648 --- [           main] io.netty.util.ResourceLeakDetector       : -Dio.netty.leakDetection.maxRecords: 4
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.numHeapArenas: 16
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.numDirectArenas: 16
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.pageSize: 8192
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.maxOrder: 11
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.chunkSize: 16777216
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.tinyCacheSize: 512
2024-02-05 15:11:18.421 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.smallCacheSize: 256
2024-02-05 15:11:18.422 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.normalCacheSize: 64
2024-02-05 15:11:18.422 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.maxCachedBufferCapacity: 32768
2024-02-05 15:11:18.422 DEBUG 12648 --- [           main] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.cacheTrimInterval: 8192
2024-02-05 15:11:18.426 DEBUG 12648 --- [           main] io.netty.buffer.ByteBufUtil              : -Dio.netty.allocator.type: pooled
2024-02-05 15:11:18.426 DEBUG 12648 --- [           main] io.netty.buffer.ByteBufUtil              : -Dio.netty.threadLocalDirectBufferSize: 65536
2024-02-05 15:11:18.426 DEBUG 12648 --- [           main] io.netty.buffer.ByteBufUtil              : -Dio.netty.maxThreadLocalCharBufferSize: 16384Process finished with exit code -1

有了spring,我们开始下一步,增加消息分发功能

 全部源码详见:

gitee : eternity-online: 多人在线mmo游戏 - Gitee.com

分支:step-05

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/668793.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Unable to access SFTP sub-system, operation failed

解决方法&#xff1a; 1. 编辑 /etc/ssh/sshd_config 配置文件 2. 重启SSHD服务 service sshd restart 还有一种特殊情况&#xff0c;也是本文重点要介绍的&#xff1a; 当启用sftp-server后&#xff0c;使用FlashFXP等工具传输文件的时候&#xff0c;仍然失败&#xff0c;…

『运维备忘录』之 Vim 命令详解

运维人员不仅要熟悉操作系统、服务器、网络等只是&#xff0c;甚至对于开发相关的也要有所了解。很多运维工作者可能一时半会记不住那么多命令、代码、方法、原理或者用法等等。这里我将结合自身工作&#xff0c;持续给大家更新运维工作所需要接触到的知识点&#xff0c;希望大…

解锁企业软件管理新篇章,Allegro许可证的有效期与企业策略

在数字化经济的时代&#xff0c;企业越来越依赖于软件来提升运营效率和管理水平。然而&#xff0c;企业在使用软件时往往忽视了软件许可证的有效期问题&#xff0c;导致一系列不必要的风险和损失。Allegro许可证作为业界领先的软件解决方案提供商&#xff0c;强调许可证有效期的…

生成代码从来都不是困难的部分

我的新书《Android App开发入门与实战》已于2020年8月由人民邮电出版社出版&#xff0c;欢迎购买。点击进入详情 2023 年对于生成式 AI&#xff0c;特别是大型语言模型 (LLM) 来说是不平凡的一年。在所有关于生成式人工智能的讨论中&#xff0c;出现了一个熟悉的重复&#xff…

MySQL进阶45讲【10】MySQL为什么有时候会选错索引?

1 前言 前面我们介绍过索引&#xff0c;在MySQL中一张表其实是可以支持多个索引的。但是&#xff0c;写SQL语句的时候&#xff0c;并没有主动指定使用哪个索引。也就是说&#xff0c;使用哪个索引是由MySQL来确定的。 大家有没有碰到过这种情况&#xff0c;一条本来可以执行得…

vue2 自定义指令 v-highlight 文本高亮显示分享

简单分享一个文本高亮显示的自定义指令&#xff0c;主要分两部分&#xff1a; 1、代码实现&#xff1a;在 main.js 文件中添加一个自定义指令&#xff0c;实现搜索时文本高亮显示&#xff0c;代码如下&#xff1a; const highlightText (el, searchText) > {const textCo…

Linux--- vim详解

&#x1f4d9; 作者简介 &#xff1a;RO-BERRY &#x1f4d7; 学习方向&#xff1a;致力于C、C、数据结构、TCP/IP、数据库等等一系列知识 &#x1f4d2; 日后方向 : 偏向于CPP开发以及大数据方向&#xff0c;欢迎各位关注&#xff0c;谢谢各位的支持 “学如逆水行舟&#xff0…

请解释Java中的内存模型(Memory Model)以及它与线程安全有什么关系?

请解释Java中的内存模型&#xff08;Memory Model&#xff09;以及它与线程安全有什么关系&#xff1f; Java中的内存模型&#xff08;Memory Model&#xff09;是一种规范&#xff0c;定义了多线程程序在共享内存环境中的行为。这个模型描述了在多线程程序中&#xff0c;线程…

大数据企业应用场景分析

目录 一、企业分析 1.1 企业领域维度分析 1.2 技术服务型维度分析 1.3 细分领域维度分析 二、大数据应用场景 2.1 数据分析 2.2 智能推荐 2.3 产品/流程优化 2.4 异常监测 2.5 智能管理 2.6 人工智能和机器学习 三、总结 前言&#xff1a;想讲清楚大数据应用对企业…

响应式开发如何设置断点,小屏幕界面该如何显示(有动图)

Hi&#xff0c;我是贝格前端工场&#xff0c;本期分享响应式开发&#xff0c;如何设置屏幕断点&#xff0c;pc页面布局到了移动端之后该如何布局的问题&#xff0c;微软也提供了设置屏幕断点的动图演示&#xff0c;非常直观。 一、什么是响应式开发&#xff0c;为何要设置屏幕断…

常用存储器

目录 一、存储器的种类 二、易失性存储器&#xff08;RAM&#xff09; 1. DRAM &#xff08;1&#xff09;SDRAM &#xff08;2&#xff09;DDR SDRAM 2. SRAM 3. DRAM与SRAM的应用场合 三、非易失性存储器 1. ROM &#xff08;1&#xff09;MASK ROM &#xff08;2…

YoloV8改进策略:Neck改进:HAM混合注意力机制改进YoloV8|多种改进,多种姿势涨点|代码注释详解

摘要 HAM通过快速一维卷积来缓解通道注意机制的负担,并引入通道分离技术自适应强调重要特征。HAM作为通用模块,在CIFAR-10、CIFAR-100和STL-10数据集上实现了SOTA级别的分类性能。 论文链接:https://www.sciencedirect.com/science/article/abs/pii/S0031320322002667?vi…

2024年【天津市安全员B证】考试报名及天津市安全员B证最新解析

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 天津市安全员B证考试报名根据新天津市安全员B证考试大纲要求&#xff0c;安全生产模拟考试一点通将天津市安全员B证模拟考试试题进行汇编&#xff0c;组成一套天津市安全员B证全真模拟考试试题&#xff0c;学员可通过…

【产品升级】SmartPipe升级到版本2.0

在近一个月的攻关和测试下&#xff0c;SmartPipe软件轴线自动识别算法的性能大幅提升&#xff0c;鲁棒性和稳定性进一步增强。近一年来客户累计反馈的多种复杂管路&#xff08;包括带有支管管路、带有压瘪段管路、推弯管、装配管、带有复杂孔洞管路等&#xff09;现在均能够正确…

PySpark(四)PySpark SQL、Catalyst优化器、Spark SQL的执行流程

目录 PySpark SQL 基础 SparkSession对象 DataFrame入门 DataFrame构建 DataFrame代码风格 DSL SQL SparkSQL Shuffle 分区数目 DataFrame数据写出 Spark UDF Catalyst优化器 Spark SQL的执行流程 PySpark SQL 基础 PySpark SQL与Hive的异同 Hive和Spark 均是:“分…

设计模式(结构型模式)装饰器模式

目录 一、简介二、装饰器模式2.1、组件信息2.2、具体组件信息2.3、颜色装饰器抽象类2.4、颜色装饰器实现类 三、使用3.1、测试3.2、优缺点 一、简介 装饰器模式是一种结构型设计模式&#xff0c;它允许向现有对象动态地添加新功能&#xff0c;同时又不改变其结构。它通过创建包…

数据挖掘实战-基于决策树算法构建北京市空气质量预测模型

&#x1f935;‍♂️ 个人主页&#xff1a;艾派森的个人主页 ✍&#x1f3fb;作者简介&#xff1a;Python学习者 &#x1f40b; 希望大家多多支持&#xff0c;我们一起进步&#xff01;&#x1f604; 如果文章对你有帮助的话&#xff0c; 欢迎评论 &#x1f4ac;点赞&#x1f4…

ChatGPT Plus如何升级?信用卡付款失败怎么办?如何使用信用卡升级 ChatGPT Plus?

ChatGPT Plus是OpenAI提供的一种高级服务&#xff0c;它相较于标准版本&#xff0c;提供了更快的响应速度、更强大的功能&#xff0c;并且用户可以优先体验到新推出的功能。 尽管许多用户愿意支付 20 美元的月费来订阅 GPT-4&#xff0c;但在实际支付过程中&#xff0c;特别是…

【面试深度解析】腾讯音乐校招 Java 后端一面:SpringBoot工作机制、缓存雪崩、数据一致性、MySQL索引失效(下)

欢迎关注公众号&#xff08;通过文章导读关注&#xff1a;【11来了】&#xff09;&#xff0c;及时收到 AI 前沿项目工具及新技术的推送&#xff01; 在我后台回复 「资料」 可领取编程高频电子书&#xff01; 在我后台回复「面试」可领取硬核面试笔记&#xff01; 文章导读地址…

运维自动化bingo前端

项目目录结构介绍 项目创建完成之后&#xff0c;我们会看到bingo_web项目其实是一个文件夹&#xff0c;我们进入到文件夹内部就会发现一些目录和文件&#xff0c;我们简单回顾一下里面的部分核心目录与文件。 ├─node_modules/ # node的包目录&#xff0c;项目运行的依赖包…