博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
request常用方法
阅读量:5755 次
发布时间:2019-06-18

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

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

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

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

Java代码  

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

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

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

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

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

本文出自 “” 博客,请务必保留此出处

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

你可能感兴趣的文章
往届软工实践作品评述
查看>>
[水]用vb写了个PCB
查看>>
linux 通过两个网卡,连接不同的不同的网段
查看>>
AizuOJ ALDS1_7_A Rooted Trees(有根树的表达)
查看>>
POJ 1862 Stripies (简单贪心)
查看>>
go 数组与切片
查看>>
第一篇
查看>>
在VS2013、VS2015下如何配置DirectX SDK的开发环境
查看>>
Windows7下IIS+php配置教程 http://www.jb51.net/article/113812.htm
查看>>
Razor视图引擎的基本概念与法语
查看>>
电解电容
查看>>
SQL for xml path 应用 很详细
查看>>
Azure云 windows平台 搭建ftp服务器注意事项
查看>>
比技术还重要的事
查看>>
Single Number II
查看>>
Palindrome Partitioning II
查看>>
windows server 2012 安装sql server集群
查看>>
接口的使用-----圆形的面积周长举例
查看>>
websocket,socket,http长连接
查看>>
构建之法阅读笔记03
查看>>