request.getServletContext().getRealPath(“/“)的路径资源问题?部署资源路径(tomcat容器)
getRealPath("/") 获取实际路径,“/”指代项目根目录,所以代码返回的是项目在容器中的实际发布运行的根路径如:String realPath1 = request.getServletContext().getRealPath("/");realPath1=E:\IDEA_Workspace_test\springboot-test\target\springboot-test\..
·
getRealPath("/") 获取实际路径,“/”指代项目根目录,所以代码返回的是项目在容器中的实际发布运行的根路径如:
String realPath1 = request.getServletContext().getRealPath("/");
realPath1=E:\IDEA_Workspace_test\springboot-test\target\springboot-test\
如果部署在tomcat容器中,request.getServletContext().getRealPath("/"),获取的就是tomcat下webapps文件下,加上项目名称。
更多推荐
已为社区贡献3条内容
所有评论(0)