1. 程式人生 > >jsp網頁中靜態資源圖片的整體href呼叫

jsp網頁中靜態資源圖片的整體href呼叫

今天在看程式碼時,發現程式使用了 request.getScheme() 。不明白是什麼意思,查了一下。結果整理如下:

1、request.getScheme() 返回當前連結使用的協議;一般應用返回http;SSL返回https;

2、在程式中的應用如下:

String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

    <base href="<%=basePath%>">

3、複習一下request 的常用方法:

request.getSchema()可以返回當前頁面使用的協議,http 或是 https;

request.getServerName()可以返回當前頁面所在的伺服器的名字;

request.getServerPort()可以返回當前頁面所在的伺服器使用的埠,就是80;

request.getContextPath()可以返回當前頁面所在的應用的名字;

今天在看程式碼時,發現程式使用了 request.getScheme() 。不明白是什麼意思,查了一下。結果整理如下:

1、request.getScheme() 返回當前連結使用的協議;一般應用返回http;SSL返回https;

2、在程式中的應用如下:

String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

    <base href="<%=basePath%>">

3、複習一下request 的常用方法:

request.getSchema()可以返回當前頁面使用的協議,http 或是 https;

request.getServerName()可以返回當前頁面所在的伺服器的名字;

request.getServerPort()可以返回當前頁面所在的伺服器使用的埠,就是80;

request.getContextPath()可以返回當前頁面所在的應用的名字;