赞
踩
解决办法:将返回页面最前面的"/"去掉
//商城登录页面
@GetMapping("/user/login")
public String userLogin() {
return "mall/login";
}
//商城注册页面
@RequestMapping("/user/register")
public String userRegister() {
return "mall/register";
}
解决办法:将页面最前面的"/"去掉
<header th:replace="mall/header::header-fragment"></header>
<!-- nav -->
<nav th:replace="mall/header::nav-fragment"></nav>
解决办法:controller中的页面地址一定要与资源中的页面名称大小写一致
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。