JSSE 提供的 动态 debug 追踪模式 规格严格

如何在Eclipse执行 类似 JSSE 提供的 动态 debug 追踪模式

列:

     java -Djavax.net.debug=SSL,handshake,data,trustmanager

     首先确定这是一个属于运行时 VM 的一个参数, 且该参数是 -Djavax.net.debug=SSL,handshake,data,trustmanager, 所以接下来我们就需要将该参数加入到VM的Parameters里面去

click "Run" on the top menus
select "Run Configuration"
Switch to the "Arguments" tab on the right panel
Click "Certificates" under the panle "VM parameters"
Click "NEW"
Enter name as "java.net.debug", then enter the value "-Djavax.net.debug=SSL,handshake,data,trustmanager" 
Added the "java.net.debug" parameter into "VM parameters"

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/DGenerationX/archive/2009/03/06/3963356.aspx

原文地址:https://www.cnblogs.com/diyunpeng/p/1652536.html