作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
属性键已贬值并导致我的代码出现问题。我查看了 netty wiki,它说我应该“使用 valueOf(String) 代替”。嗯,我不明白查找字符串的值与属性键有什么关系。有人对此有一些解释吗?
最佳答案
他们在某个时候更改了AttributeKey
。但它们仍然在那里:
创建 key 的旧方法:
final static AttributeKey<Long> CHECKSUMKEY = new AttributeKey("calcchecksum");
替换为:
final static AttributeKey<Long> CHECKSUMKEY = AttributeKey.valueOf("calcchecksum");
final static AttributeKey<CustomClass> COMMANDKEY = AttributeKey.valueOf("command");
final static AttributeKey<Long> FILEHANDLEKEY = AttributeKey.valueOf("filehandle");
final static AttributeKey<File> PATHKEY = AttributeKey.valueOf("destpath");
因此仅不推荐使用 AttributeKey
的构造函数。您可以像这样使用它们:
ctx.channel().attr(Server.PATHKEY).set(file);
File file = ctx.channel().attr(Server.PATHKEY).get();
ctx.channel().attr(Server.PATHKEY).remove();
关于netty - 替换 AttributeKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29596677/
我以前用过这个,所以我不知道为什么它不起作用。考虑这段代码 public class NioServer implements Runnable { private EventLoopGrou
属性键已贬值并导致我的代码出现问题。我查看了 netty wiki,它说我应该“使用 valueOf(String) 代替”。嗯,我不明白查找字符串的值与属性键有什么关系。有人对此有一些解释吗? 最佳
运行 GreetingServerTest.java 测试后,我遇到了以下错误。我正在使用 grpc 1.1.0-SNAPSHOT 库并尝试实现 git repo 中给出的 grpc 的基本 Hell
我是一名优秀的程序员,十分优秀!