Java项目访问静态资源

Java项目访问静态资源


对于实际java项目中的静态资源,我们不论是用绝对路径或者相对路径,都是不合适的. 我们访问静态资源只有两种情况:

  1. java源代码中resources目录下的文件,构建项目后会被放到类路径下,因此我们通过类字节码或类加载器访问该静态资源.

    // 返回当前类字节码所在路径,即 target/classes/类的包路径
    this.getClass().getResource("").toString();	
    // 返回当前类字节码所在路径下的文件流,即 target/classes/类的包路径/path/file
    this.getClass().getResourceAsStream("/path/file");
    
    // 返回类路径,即 target/classes
    this.getClass().getClassLoader().getResource("").toString();
    // 返回类路径下的文件流,即 target/classes/path/file
    this.getClass().getClassLoader().getResourceAsStream("/path/file");
    
  2. 在web项目中webapp目录下的文件,构建项目后会被放到tomcat的web项目路径下,我们通过当前会话的ServletContext访问该静态资源.

    某项目在发布到http://localhost:8080/contextPath路径下,在web.xml中配置某Servlet的url-pattern/servletPath.
    在浏览器地址栏中输入http://localhost:8080/contextPath/servletPath即可访问该Servlet.

    // 返回当前web项目的实际(绝对)路径 "http://host/contextPath"
    request.getSession().getServletContext().getRealPath("");
    
    // 返回java源代码中 web-app目录下的文件流,即java源代码中 "web-app/path/file"
    // 亦即web项目中的"http://host/contextPath/path/file"
    request.getSession().getServletContext().getResourceAsStream("path/file");
    request.getSession().getServletContext().getResourceAsStream("/path/file");
    
    request.getContextPath();	// 返回"/contextPath"
    request.getServletPath();	// 返回"/servletPath"
    

你可能感兴趣的:(随笔)