Java 1.6 JSSE使用的默认SSL会话超时是多少?
SSLSessionContext有获取和设置它的方法,但是它和JSSE Reference Guide都没有提到任何默认值。
发布于 2011-03-21 17:13:48
SSLSessionContext本身的不能有一个默认值,因为它只是一个接口。您需要查看实现以找到默认值。
http://www.docjar.com/html/api/sun/security/ssl/SSLSessionContextImpl.java.html表示SSLSessionContextImpl为24小时。
https://stackoverflow.com/questions/5374722
复制相似问题