I'm trying to return to an HTML file from the Spring boot Controller but I am getting an error: Whitelabel Error Page This application has no explicit mapping for /error
My Controller:
@Controller
public class HomeController {
@RequestMapping ("/")
public ModelAndView homePage() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("homepage");
return modelAndView;
}
}
If any one have solution please help me.