1. 程式人生 > >獲得jsp頁面當前專案的訪問路徑

獲得jsp頁面當前專案的訪問路徑

首先,在jsp頁面引入C標籤。

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

然後,在jsp頁面引入java程式碼。
<%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
最後,用C標籤繫結“basePath ”
<c:set var="cp" value="<%=basePath%>" />

在頁面中用'${cp}'就可以取到專案的訪問路徑。

注意:將${cp}用引號括起來。