在catalina.bat添加一行(proxyPort的值为fiddler端口号)java
set CATALINA_OPTS=-Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8888
在Java代码中经过如下方式设置代理ide
System.setProperty("http.proxyHost", "localhost"); System.setProperty("http.proxyPort", "8888"); System.setProperty("https.proxyHost", "localhost"); System.setProperty("https.proxyPort", "8888");
https://stackoverflow.com/questions/8549749/how-to-capture-https-with-fiddler-in-java代理