Spring Boot | Cookbook
Inhaltsverzeichnis
Introduction
Tipps and Tricks
Change App Port Number
Add line to file src/main/resources/application.properties
server.port=9010
Rest Api
Get JSON Data from a remote Rest Server
final RestTemplate restTemplate = new RestTemplate(); final String response = restTemplate.getForObject("https://httpbin.org/ip", String.class); System.out.println(response);
Leave a Reply