getContextPath和getRealPath的区别

这个问题很简单,实验一下就出来了,其实主要区别就是相对路径和绝对路径:

  • getContextPath返回的是相对路径,工程的项目的相对路径;
  • getRealPath返回的绝对路径,就是在文件系统的实际路径;
下面是我自己做的实验,在SpringMvc+Spring+Hibernate的项目中做的实验
@Controller
public class IndexController {

	@RequestMapping("/")
	public String index(HttpServletRequest request){
		System.out.println(request.getContextPath());
		System.out.println(request.getSession().getServletContext().getContextPath());
		System.out.println(request.getServletContext().getContextPath());
		System.out.println(request.getServletContext().getRealPath("/"));
		System.out.println(request.getSession().getServletContext().getContextPath());
		System.out.println(request.getSession().getServletContext().getRealPath("/"));
		return "index";
	}
}

上面的打印结果如下:
/cn.test
/cn.test
/cn.test
E:\StudyResource\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp3\wtpwebapps\cn.test\
/cn.test
E:\StudyResource\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp3\wtpwebapps\cn.test\
其实request、session、ServletContext调用getContextPath返回的结果是相同的

你可能感兴趣的:(getContextPath和getRealPath的区别)