tomcat根:http://localhost:8080/
项目根:http://localhost:8080/myentity
jsp中base href的用处
使得不同位置的jsp都从项目根下寻找资源
如 a.jsp
admin/a.jsp
中引用图片image/a.jpg
有basehref 两个文件都使用 image/a.jpg
没有basehref 则admin/a.jsp需要变为../image/a.jpg
但是非常恶心的一点是include标签不能这样使用,<%@include file=”404.jsp” %>,这非常容易让人错乱,这里就需要改成<%@include file=”../404.jsp” %>,
jsp:include也是如此;且在IE8中的js里有个bug
当使用window.location.href=”test.jsp”时;
浏览器跳过basehref(其他浏览器不会)直接得到路径为 http://localhost:8080/test.jsp
所以在使用location.href时需要手动取basehref的值
window.location.href= document.getElementsByTagName(“base”)[0].getAttribute(“href”)+site;
html中使用base href
html中 base href同样生效,但是无法通过request获取项目路径了,
需要通过js来构造base路径
<script>
var pathname = location.pathname;
pathname =pathname.substring(0,pathname.substr(1).indexOf("/")+1);
var base = '//' + location.host + pathname+"/";
document.getElementsByTagName("base")[0].setAttribute("href",base);
</script>
斜杠在各个领域描述url中代表的含义
- html中
代表盘符 /image/a.jpg 代表C://image/a.jpg - jsp中
代表tomcat根路径 /image/a.jpg 代表http://localhost:8080/image/a.jpg - css,js与是否在html或jsp中相关
- servlet中分为request跳转与sendredict跳转
没有斜杠以servlet路径为主
访问 http://localhost:8080/myentity/abc/testServlet5
req.getRequestDispatcher(“500.jsp”).forward(req, resp);
实际跳转路径为http://localhost:8080/myentity/abc/500.jsp
有斜杠/则为项目路径(这点是与jsp和html不同的)
http://localhost:8080/myentity/abc/testServlet5
req.getRequestDispatcher(“/500.jsp”).forward(req, resp);
实际跳转路径为http://localhost:8080/myentity/500.jsp
而sendredict却又和forward不同,与jsp,html相同,以tomcat根为主
所以这也是个坑
在servlet中new File对应的文件路径
没有斜杠代表执行文件所在路径
E://tomcat/bin/startup.bat所在的文件夹
有斜杠和html相似,代表盘符,E://tomcat/bin/startup.bat所在盘符
所以,正确的做法是通过context.getRealPath(“/”)来获得项目所在路径
File file = new File("test.txt");
System.out.println(file.getAbsolutePath());//E:\apache-tomcat-7.0.57\bin\test.txt
File file = new File("/test.txt");
System.out.println(file.getAbsolutePath());//E:\test.txt
String realpath = req.getServletContext().getRealPath("/");
System.out.println(realpath);//E:\apache-tomcat-7.0.57\webapps\myentity\
main方法里面的file对应的文件路径
没有斜杠时,路径为执行路径,这里为源文件项目所在位置,如果导出jar包后,则为jar所在路径
有斜杠时为执行路径时的盘符,在E:/abc/def/test.jar下运行则为E:/
linux系统下的/ 就是根路径/
File file = new File("test.txt");
System.out.println(file.getAbsolutePath());//E:\Longwide\MyEclipse10\myentity Maven Webapp\test.txt
System.out.println(file.getCanonicalPath());
类路径的获取
main下
class.getResource(“”) //代表该类所在路径
class.getResource(“/”) //代表该类所在根路径(去掉其包的路径)
getClassLoader().getResource(“”) //代表该类加载器加载的根路径(该类所在路径去掉加载类的包的路径)
getClassLoader().getResource(“/”) //为空
System.out.println(T21.class.getResource(""));
System.out.println(T21.class.getResource("/"));
System.out.println(T21.class.getClassLoader().getResource(""));
System.out.println(T21.class.getClassLoader().getResource("/"));
/*
结果为
file:/E:/Longwide/MyEclipse10/JavaTest/bin/com/lg/test11/
file:/E:/Longwide/MyEclipse10/JavaTest/bin/
file:/E:/Longwide/MyEclipse10/JavaTest/bin/
null
*/
servlet中
结果与main方法运行类似,区别是
getClassLoader().getResource(“/”) 在servlet中与getClassLoader().getResource(“”))一致,而在main中为空
值得一提的是,maven的resources目录中文件 部署时会被放到执行路径类路径下,所以可以根据getClassLoader().getResource(“/”)得到maven resources路径
System.out.println(T21.class.getResource(""));
System.out.println(T21.class.getResource("/"));
System.out.println(T21.class.getClassLoader().getResource(""));
System.out.println(T21.class.getClassLoader().getResource("/"));
/*
结果为
file:/E:/apache-tomcat-7.0.57/webapps/myentity/WEB-INF/classes/com/lg/web/servlet/
file:/E:/apache-tomcat-7.0.57/webapps/myentity/WEB-INF/classes/
file:/E:/apache-tomcat-7.0.57/webapps/myentity/WEB-INF/classes/
file:/E:/apache-tomcat-7.0.57/webapps/myentity/WEB-INF/classes/
*/
main方法获取源文件所在路径
以上获取路径的方法基本都是 程序执行路径
可以使用系统参数 user.dir获取工作空间路径,然后在后面加路径得到类所在路径
注:servlet中的user.dir的测试结果为 E:\apache-tomcat-7.0.57\bin
public static String getMavenResourcesPath(){
String propath = System.getProperty("user.dir");
String respath = propath+"\\src\\main\\resources";
return respath;
}
/*maven获取java文件所在路径*/
public static String getMavenJavaPath(){
String propath = System.getProperty("user.dir");
String respath = propath+"\\src\\main\\java";
return respath;
}