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= 阅读全文
posted @ 2014-11-25 15:27 ZimZz 阅读(12548) 评论(0) 推荐(1)
关于 Netty Channel 的 Autoread
摘要:Netty 4 的 Channel 多了一个 autoread 参数, 它的用处是在让 channel 在触发某些事件以后(例如 channelActive, channelReadComplete)以后还会自动调用一次 read(), 代码:DefaultChannelPipeline.java ... 阅读全文
posted @ 2014-11-04 02:16 ZimZz 阅读(6189) 评论(0) 推荐(0)