pom.xml
org.springframework.boot spring-boot-starter-webpackage com.aluracursos.screenmatch.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class SerieController {
@GetMapping("/series")
public String mostrarMensaje(){
return "Este es mi primer mensaje en mi aplicación web, de " +
"la mejor profe";
}
}
Result: