登录页面后,spring使用以下控制器将我重定向到我的主站点:
//Login Success
@GetMapping("/login-success")
public ModelAndView loginSuccess() {
return new ModelAndView("/cont/home.html");
}
URL如下:
http://localhost:8080/login-success
这是home.html的HTML结构,但未加载CSS。 如果我导航到http://localhost:8080/cont/home.html,则它具有样式。
感谢您的帮助。 :)
答案 0 :(得分:0)
在下面尝试这样
return new ModelAndView("/CONTEXT_PATH/cont/home.html");
OR
response.sendRedirect("/cont/home.html");
return;
指定上下文路径,以便加载页面