instead of @Controller annotation use @RestController.if you want to use @Controller then add @ResponseBody below @GetMapping("/")
@Controller
@RestController
@ResponseBody
@GetMapping("/")