Home > php教程 > PHP开发 > body text

charles captures requests in eclipse

高洛峰
Release: 2016-12-02 16:15:38
Original
1563 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!