I'm learning Java and SpringBoot. Trying to make a web app to check the weather. I'm using API from https://openweathermap.org/api.
I do not know how to retrieve data from API (JSON). Could someone tell me something?
public String connectAndResponse(String url) throws IOException {
StringBuilder stringBuilder = new StringBuilder();
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(
connection.getResponseCode()==200 ? connection.getInputStream() : connection.getErrorStream()
));
String line = "";
while((line = reader.readLine()) !=null){
stringBuilder.append(line);
}
return stringBuilder.toString();
}
I have already processed JSON on a string but I do not know how to use JSON to use spring boot (it would work on a form where the locale is typing).
From Spring documentation "Consuming a RESTful Web Service" :
First, you will have to define your model. In this case, it is
Quote
andValue
.Then, you will be able to call your API.
Here's the example :
RestTemplate
will automatically transform JSON from API into Java object.