服务器端 启动类 package me.jar.netty.websocket; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.Cha ...
分类:
Web程序 时间:
2021-03-08 14:19:50
阅读次数:
0
问题现象 集成华为HMS SDK应用内支付的相关能力时,参考华为提供的文档,对支付订单进行校验,结果总是报错如下: {"responseCode":"6","responseMessage":"Token is expired or invalid"} 问题定位 联系华为官方技术客服(地址:http ...
分类:
其他好文 时间:
2021-03-04 13:25:55
阅读次数:
0
Lombok相关(通过注解的方式,在编译时自动为属性生成构造器、getter/setter、equals、hashcode、toString方法): maven添加依赖或下载jar包: <dependency> <groupId>org.projectlombok</groupId> <artifa ...
分类:
其他好文 时间:
2021-03-04 12:55:11
阅读次数:
0
不可变对象想必大部分朋友都不陌生,大家在平时写代码的过程中100%会使用到不可变对象,比如最常见的String对象、包装器对象等,那么到底为何Java语言要这么设计,真正意图和考虑点是什么?可能一些朋友没有细想过这些问题,今天我们就来聊聊跟不可变对象有关的话题。 以下是本文目录大纲: 一.什么是不可 ...
分类:
编程语言 时间:
2021-03-01 14:06:13
阅读次数:
0
例如 _sopen_s 在磁盘空间不够的时候, 宏 errno 就会返回 ENOSPC(28) MSDN 文档时只提到以下错误码 errno valueCondition EACCES The given path is a directory, or the file is read-only, ...
对于如下代码的,它的打印结果是什么 NSThread *thread = [[NSThread alloc] initWithBlock:^{ NSLog(@"1"); }]; [thread start]; [self performSelector:@selector(testhaha) onT ...
分类:
编程语言 时间:
2021-02-24 13:19:34
阅读次数:
0
假设有下面三个类: public class A { private B b; public A(B b) { this.b = b; } ... } public class B { private C c; public B(C b) { this.c = c; } ... } public c ...
分类:
其他好文 时间:
2021-02-18 13:32:53
阅读次数:
0
数据库中删除的三种语句: Delete:用于删除表中的行,可以删除某一行,也可以在不删除表的情况下删除所有的行。 Drop:用于删除表,将表的结构、属性、索引全部删除。 Truncate:用于删除表内的数据,仅删除表内数据,不删除表本身。 数据库中删除语句的相同点: truncate和不带where ...
分类:
其他好文 时间:
2021-02-17 14:31:21
阅读次数:
0
参考:https://www.unknowncheats.me/forum/red-dead-redemption-2-a/386858-ct-trader-role.html CE搜索数据类型设置为"Array of byte",勾选"Hex",然后搜索以下内容: ?? 00 00 00 00 0 ...
分类:
其他好文 时间:
2021-02-16 11:57:34
阅读次数:
0
Intoduciton: The way of using '' in html part confused me when I was learning Class&Style Bindings in Vue's official guide.(of course it's also becaus ...
分类:
其他好文 时间:
2021-02-15 12:40:17
阅读次数:
0