EmbeddedChannel 概述 ChannelHandler 是 Netty 程序的关键元素,所以彻底地测试它们应该是你的开发过程中的一个标准部分,EmbeddedChannel 是 Netty 专门为改进针对 ChannelHandler 的单元测试而提供的。Netty 提供了它所谓的 Em ...
分类:
Web程序 时间:
2021-06-28 17:52:05
阅读次数:
0
Scala-Hello World 目标,在本地启动一个项目,能够输出helloworld https://www.scala-lang.org/ 官网提供的下载安装方式有很多种。 推荐IDE: IDEA 和 VSCode 这里我安装了IDEA,就用了它。 创建scala文件的时候,提示安装Scal ...
分类:
其他好文 时间:
2021-06-25 17:00:41
阅读次数:
0
Scala 操作MySQL 本地之前安装过MySQL 启动: mysql.server start 停止: mysql.setver stop 登录: mysql -u root ; 登录root用户。 选择一个database : use erwa 查看所有的database: show data ...
分类:
数据库 时间:
2021-06-25 17:00:08
阅读次数:
0
mysql引擎 create table t_mysql ( id Int32, name String, ) engine = MySQL('127.0.0.1:3306', 'test', 't', 'root', '123456'); mysql进行ddl: alter table t mod ...
分类:
其他好文 时间:
2021-06-25 16:44:37
阅读次数:
0
1.当extends app 时,可以引入变量,而使用main函数不能引入 extends app main 函数 2. extends app 会延迟加载,使用main函数更加稳定 等区别网络自行搜索 其他不同待补充 ...
分类:
移动开发 时间:
2021-06-24 18:03:37
阅读次数:
0
出错的git命令: git push -u origin main解决方法:git show-ref8c4c7afc8d831dcba4f8989e39eb8286c1657439 refs/heads/master新命令:git push -u origin master成功解决参考:https: ...
分类:
其他好文 时间:
2021-06-24 17:31:05
阅读次数:
0
前言 httprunner 3.x可以支持正则匹配断言,使用assert_regex_match方法 assert_regex_match assert_regex_match 源码如下 def assert_regex_match( self, jmes_path: Text, expected_ ...
分类:
Web程序 时间:
2021-06-23 17:08:14
阅读次数:
0
Codeforces Round #726 (Div. 2) A - Arithmetic Array int main() { IOS; for (cin >> _; _; --_) { cin >> n; m = -n; rep (i, 1, n) cin >> k, m += k; cout ...
分类:
其他好文 时间:
2021-06-22 18:41:35
阅读次数:
0
创建编写 build.sh 脚本文件,内容如下: #!/usr/bin/env bash # # Generated by: https://github.com/swagger-api/swagger-codegen.git # frameworkVersion=net40 # sdk must ...
分类:
其他好文 时间:
2021-06-22 18:25:47
阅读次数:
0
Elasticsearch-文档查询 数据准备 查询 简单查询 mall/goods/1 条件查询 GET mall/goods/_search?q=b_name: "如何" 复杂查询 匹配查询 GET mall/goods/_search { "query": { "match": { "b_na ...
分类:
其他好文 时间:
2021-06-22 18:01:13
阅读次数:
0