上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: Zinx——TCP服务器框架 GitHub:https://github.com/aceld/zinx 作者:刘丹冰aceld 学习目标: 熟悉框架流程 手写源码 测试性能 使用框架开发Demo 初步架构图 作为一个游戏服务端,实现了基本的公共广播聊天功能,广播上下线通知,通过格子实现广播位置坐标 阅读全文
posted @ 2022-11-10 12:43 Leejk 阅读(53) 评论(0) 推荐(0) 编辑
摘要: Sprint & Sprintf Sprint 使用其操作数的默认格式格式化并返回结果字符串。 当两者都不是字符串时,在操作数之间添加空格。 // Sprint formats using the default formats for its operands and returns the re 阅读全文
posted @ 2022-09-28 21:17 Leejk 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 软件测试的软件主要有: 一、开源测试管理工具:Bugfree、Bugzilla、TestLink、mantis zentaopms 二、开源功能自动化测试工具:Watir、Selenium、MaxQ、WebInject 三、开源性能自动化测试工具:Jmeter、OpenSTA、DBMonster、T 阅读全文
posted @ 2022-09-22 00:48 Leejk 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 又一年过去了,这一年在路上的感觉,让人身心疲惫。因为疫情防控政策,出行需要48小时核算证明,看着每天排着长队的核酸点,好像已经忘记了上次在公共场合摘下口罩的时间是几年前。 记得以前去喝碗胡辣汤,因为那家的很好吃,需要排队;或者某某景区的售票处。印象中排队的场合往往是因愉快的事才不显得那么无聊。又觉得 阅读全文
posted @ 2022-09-13 23:29 Leejk 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1.MyBatis的标签 2.MyBatis的Batch.type 3.jdbc的preparedStatement 4.StringBuffer拼接sql MyBatis的标签 @Insert("<script>" + "insert into t_user (id, name) " <forea 阅读全文
posted @ 2022-07-26 17:32 Leejk 阅读(1015) 评论(0) 推荐(1) 编辑
摘要: 数据定义 ClickHouse的数据类型 ClickHouse是一款分析型数据库,有多种数据库类型,分为基础类型、复合类型和特殊类型。其中基础类型使用ClickHouse具备了描述数据的基本能力,而另外两种类型则是ClickHouse的数据表达能力更加丰富立体 基础类型 基础类型只有数值、字符串和时 阅读全文
posted @ 2022-07-26 14:24 Leejk 阅读(728) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import java.util.concurrent.*; @Component 阅读全文
posted @ 2022-07-08 11:18 Leejk 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 思路:office中使用的Microsoft公式编辑器,例如word中公式为omml格式,转化为MathML格式,然后通过BufferedImage转化为图片格式。 踩坑较多,虽然以后大概率用不到了,记录一下便于他人使用。 工具类 使用封装好的工具类OmmlUtils; public class O 阅读全文
posted @ 2022-07-01 17:43 Leejk 阅读(854) 评论(0) 推荐(0) 编辑
摘要: 高效接口测试工具 地址:https://www.apifox.cn/ #接口管理现状 一、常用解决方案 使用 Swagger 管理 API 文档 使用 Postman 调试 API 使用 mockjs 等工具 Mock API 数据 使用 JMeter 做 API 自动化测试 二、存在的问题 维护不 阅读全文
posted @ 2022-06-17 14:43 Leejk 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 感觉在java中处理json蛮好用的一个工具类 import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gso 阅读全文
posted @ 2022-06-17 12:19 Leejk 阅读(539) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页