Spring Boot - Spring Annotations
Given this code snippet:
What annotation enables Spring Boot to detect this controller automatically?
@RestController
public class MyController {
@GetMapping("/hello")
public String sayHello() { return "Hi"; }
}What annotation enables Spring Boot to detect this controller automatically?
