Spring Boot - REST Controllers
Given this REST controller method:
What will be the HTTP response body when accessing /greet?
@RestController
public class MyController {
@GetMapping("/greet")
public String greet() {
return "Hello World";
}
}What will be the HTTP response body when accessing /greet?
