Spring Boot - Testing Spring Boot Applications
Given the following test code snippet, what will be the HTTP status code in
response.getStatusCode() if the endpoint exists and returns successfully?@Autowired private TestRestTemplate restTemplate; ResponseEntityresponse = restTemplate.getForEntity("/api/items/1", String.class);
