Web项目中获取项目根路径的方式
程序员文章站
2022-04-29 19:01:52
...
在实际开发中会将通用的js引入到一个统一的文件中,便于管理。引入时需要用到项目根路径,有三种引入方式:
1)利用相对路径引入
<script type="text/javascript" charset="utf-8" src="/js/extjs/ext-all-debug.js"></script>
2) 利用绝对路径引入
<script type="text/javascript" charset="utf-8" src="${basePath}/js/extjs/ext-all-debug.js"></script>
在web项目中,获取根路径有多种方式,如下:
- 通过java代码获取
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/";
%>
- 通过引入第三方标签库获取
如struts标签库、jstl标签库等
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" isELIgnored="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:set var="basePath" value="${pageContext.request.contextPath}" scope="page"/>
<script type="text/javascript" src="${basePath}/js/extjs/ext-lang-zh_CN.js"></script>
3)各参数含义
<%
// System.out.println("scheme: " + request.getScheme()); // 返回当前页面使用的协议,如http、https、ftp等
// System.out.println("serverName: " + request.getServerName()); // 返回当前页面所在服务器名,如localhost等
// System.out.println("serverPort: " + request.getServerPort()); // 返回当前页面所使用服务器的端口号,如80等
// System.out.println("ContextPath: " + request.getContextPath()); // 返回当前页面所在应用名称,如/web-java-extjs
// http://localhost:8080/web-java-extjs
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath();
%>
output:
scheme: http
serverName: localhost
serverPort: 8080
servletPath: /index.jsp
ContextPath: /web-java-extjs
http://localhost:8080/web-java-extjs