属性键已过时,并导致我的代码出现问题。我查看了netty Wiki,它说我应该“改用valueOf(String)”。嗯,我看不出查找字符串的值与属性键有什么关系。有人对此有一些解释吗?
最佳答案
他们在某些时候更改了AttributeKey
。他们仍然在那里:
创建密钥的旧方法:
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/