http requests in spring boot

Solutions on MaxInterview for http requests in spring boot by the best coders in the world

showing results for - "http requests in spring boot"
Alexander
07 Oct 2018
1URL url = new URL("http://example-url");
2		HttpURLConnection con = (HttpURLConnection) url.openConnection();
3		con.setRequestMethod("GET");
4
5return con.getResponseMessage().toString()
similar questions
queries leading to this page
http requests in spring boot