웹개발자/java

spring boot welcome page 설정

wlsufld 2019. 10. 18. 17:32

@Controller
public class MainController {

@RequestMapping("/")
public ModelAndView ScheduleManagementRoot(Model model) throws Exception{
ModelAndView mav = new ModelAndView("redirect:/main");

return mav;
}
}