博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
request.getScheme()的使用方法
阅读量:6459 次
发布时间:2019-06-23

本文共 734 字,大约阅读时间需要 2 分钟。

今天在修改bug时,发现程序使用了 request.getScheme() 。不明白是什么意思,在google 搜索了一下。现在明白了。整理如下:

1、request.getScheme() 返回当前链接使用的协议;比如,一般应用返回http;SSL返回https;

2、在程序中的应用如下:

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

 

3、复习一下request 的常用方法:

request.getSchema()可以返回当前页面使用的协议,http 或是 https;

request.getServerName()可以返回当前页面所在的服务器的名字;

request.getServerPort()可以返回当前页面所在的服务器使用的端口,就是80;

request.getContextPath()可以返回当前页面所在的应用的名字;

 

 

 

例如:

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

 

转载地址:http://fgxzo.baihongyu.com/

你可能感兴趣的文章
Guava库学习:学习Concurrency(二)Monitor_2
查看>>
我的友情链接
查看>>
Chrome 强制显示最小字体为 12px的解决方法
查看>>
一行命令搞定node.js 版本升级
查看>>
手动方式配置IPsec隧道
查看>>
网易云信相关
查看>>
mysql数据库死锁的产生原因及解决办法
查看>>
mhvtl虚拟磁带库(提供软件包)
查看>>
PL/SQL异常处理
查看>>
我们该怎么成为技术尖子生
查看>>
关于缓存使用中的一些看法
查看>>
Tpcc安装
查看>>
我的友情链接
查看>>
easyui 扩展loading
查看>>
第二章、Linux操作系统及常用命令
查看>>
面向对象编程:概述
查看>>
python温度转换
查看>>
matlab-自控原理 已知x~=Ax+Bu中的AB矩阵和X0,求单位输入下的时间响应
查看>>
域服务器搭建步骤
查看>>
spring jdbcTemplate查询使用
查看>>