11 2014 档案
解決 java.security.cert.CertificateException: Certificates does not conform to algorithm constraints
摘要:找到jre/lib/security/java.security将jdk.certpath.disabledAlgorithms=MD2, DSA, RSA keySize < 2048改为jdk.certpath.disabledAlgorithms=
阅读全文
关于 Netty Channel 的 Autoread
摘要:Netty 4 的 Channel 多了一个 autoread 参数, 它的用处是在让 channel 在触发某些事件以后(例如 channelActive, channelReadComplete)以后还会自动调用一次 read(), 代码:DefaultChannelPipeline.java ...
阅读全文