Home  >  Article  >  php教程  >  charles captures requests in eclipse

charles captures requests in eclipse

高洛峰
高洛峰Original
2016-12-02 16:15:381564browse

charles captures requests in eclipse

Sometimes, if you want to monitor the get and post requests sent in eclipse, you can also use the proxy method:

1. Eclipse code settings

Add in the code, you can write it in the main function , and then call the request function.

System.setProperty("http.proxySet", "true");
System.setProperty("http.proxyHost", "127.0.0.1");
System.setProperty("http.proxyPort", "8885") ;

or set it in eclipse

Windows > preferences > java > installed jres

Select installed jres > edit > Set Default VM arguments:-Dhttp.proxySet="true" -Dhttp.proxyHost= "127.0.0.1" -Dhttp.proxyPort="8888"

2. charles settings

Then set the proxy in charles. The port must be consistent, so that you can capture the requests running in eclipse.

charles captures requests in eclipse

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:hive installationNext article:hive installation