我想允许登录用户访问页面并自动检索分配给他们的模块。因此,为此我使用了以 id 作为值的@PathVariable。
我的控制器
@RequestMapping(value="/main/user/setter/settingpage/{id}", method =
RequestMethod.GET)
public String showStaffModules(@PathVariable("id") Integer id, ModelMap map,
HttpServletRequest request) {
map.addAttribute("cp", request.getContextPath());
map.addAttribute("Setter", userService.getWithModules(id));
return "/main/user/setter/settingpage";
到目前为止,尽管不断出现错误:
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP
request with URI [/app/main/user/setter/settingpage] in DispatcherServlet with
name 'appServlet'
所请求的页面位于正确的位置,但未返回。有人会知道为什么吗?谢谢。