jsp路径问题

邮差的信 提交于 2019-11-30 06:07:55

${pageContext.request.contextPath}等价于<%=request.getContextPath()%>或者可以说是<%=request.getContextPath()%>

意思就是取出部署的应用程序名或者是当前的项目名称

比如我的项目名称是SpringMVC 在浏览器中输入为http://localhost:8080/ch12test/user/input

${pageContext.request.contextPath}或<%=request.getContextPath()%>取出来的就是http://localhost:8080/ch12test/,

比如我的项目

 

 

 

经过

@RequestMapping(value = "/save")
public String addUser(@ModelAttribute User user, Model model) {
if (userService.addUser(user)) {
logger.info("成功");
return "redirect:/user/list";
}

......

}

的转发后就到了http://localhost:8080/ch12test2/ch12test2/user/input, 。

产生了路径的问题,因此需要对路径改变,将  jsp中的路径改为

就会正确转到应该的界面了 http://localhost:8080/ch12test2/user/input,

 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!