我的Spring Boot控制器工作得很好,只是我不能为home目录创建映射。我试过了:public class MyController { public ModelAndView searchPageModelAndView model = new ModelAndView(); return model;
根据,@RestController只是一个方便的注释,它结合了@Controller和@ResponseBody,@GetMapping是一个组合注释,充当@RequestMapping(method= RequestMethod.GET)的快捷方式,这意味着@GetMapping应该与@RestController和@Controller都很好地工作。实际上,@GetMapping只适用于@RestController。@RestController
public class HelloControl