ajax跨域请求使用代理
public class ProxyHandler extends HttpServlet {
private static final long serialVersionUID = 1L;
private static Logger logger = Logger.getLogger(ProxyHandler.class);
private static final String CHARSET_UTF8 = "UTF-8";
public static final String CONTENT_URL_NAME = "url";
public void init(ServletConfig config) throws ServletException {
super.init();
}
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
noSecurityRequest(req, resp);
}
private void noSecurityRequest(HttpServletRequest req, HttpServletResponse resp) throws IOException {
logger.info("ProxyHandler noSecurityRequest 请求类型: GET");
String url0 = "";
OutputStream out = null;
HttpURLConnection conn = null;
String requestContent = req.getContentType();
String requestCharset = req.getCharacterEncoding();
StringBuffer requestContentType = new StringBuffer();
if (requestContent != null) {
requestContentType.append(requestContent);
if (requestCharset != null) {
requestContentType.append(";charset=").append(requestCharset);
}
}
try {
url0 = req.getQueryString();
if (url0 != null)
url0 = URLDecoder.decode(url0, "UTF-8");
if (url0.startsWith("url=")) {
url0 = url0.substring(4);
}
if (url0.indexOf("requestTime") != -1) {
url0 = url0.split("requestTime")[0];
url0 = url0.substring(0, url0.length() - 1);
}
// 参数空格替换成%20
url0 = url0.replace(" ", "%20");
URL url = new URL(url0);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
if (!requestContentType.toString().equals("")) {
conn.setRequestProperty("Content-Type", requestContentType.toString());
}
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setUseCaches(false);
String contentType = conn.getContentType();
String encoding = conn.getContentEncoding();
out = resp.getOutputStream();
resp.setContentType(contentType);
resp.setHeader("Content-Encoding", encoding);
BufferedInputStream in = new BufferedInputStream(conn.getInputStream());
out = resp.getOutputStream();
int len = 0;
byte[] b = new byte[1024];
while ((len = in.read(b)) > 0) {
out.write(b, 0, len);
}
out.flush();
logger.info("\n请求地址: " + url0 + "\n请求成功!");
} catch (Exception e) {
logger.error("请求地址: " + url0 + "\n请求失败: " + e);
try {
if (out != null) {
out.close();
}
if (conn != null)
conn.disconnect();
} catch (Exception e1) {
logger.error(e1);
}
try {
if (out != null) {
out.close();
}
if (conn != null)
conn.disconnect();
} catch (Exception e2) {
logger.error(e2);
}
} finally {
try {
if (out != null) {
out.close();
}
if (conn != null)
conn.disconnect();
} catch (Exception e) {
logger.error(e);
}
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
logger.info("请求类型: POST");
InputStream indoc = request.getInputStream();
String url0 = request.getQueryString();
if (url0 != null) {
url0 = URLDecoder.decode(url0, "UTF-8");
}
String requestContent = request.getContentType();
String requestCharset = request.getCharacterEncoding();
StringBuffer requestContentType = new StringBuffer();
if (requestContent != null) {
requestContentType.append(requestContent);
if (requestCharset != null) {
requestContentType.append(";charset=").append(requestCharset);
}
}
OutputStream out = response.getOutputStream();
try {
if (url0.startsWith("url=")) {
String urlString = url0.substring(4);
URL url = new URL(urlString);
BufferedInputStream in = null;
HttpURLConnection connection = null;
byte[] bs = (byte[]) null;
if (url != null) {
try {
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", requestContentType.toString());
connection.setDoInput(true);
connection.setDoOutput(true);
OutputStream toserver = connection.getOutputStream();
int l = 0;
while ((l = indoc.read()) != -1) {
toserver.write(l);
}
toserver.flush();
toserver.close();
String responseContentType = connection.getContentType();
String responseCharset = connection.getContentEncoding();
response.setContentType(responseContentType);
response.setCharacterEncoding(responseCharset);
in = new BufferedInputStream(connection.getInputStream());
bs = new byte[1024];
int startpos = 0;
int num = 0;
num = in.read(bs, startpos, 1024);
logger.info("返回信息:");
while (num != -1) {
out.write(bs, 0, num);
logger.info(new String(bs));
num = in.read(bs, 0, 1024);
}
logger.info("\n请求地址: " + url0 + "\n请求成功!");
} catch (IOException e) {
logger.info("\n请求地址: " + url0 + "\n请求成功!");
if (in != null)
try {
in.close();
} catch (Exception localException1) {
}
if (connection == null) {
if (in != null)
try {
in.close();
} catch (Exception localException2) {
}
if (connection != null) {
try {
connection.disconnect();
} catch (Exception localException3) {
}
}
if (out == null)
return;
out.flush();
out.close();
return;
}
try {
connection.disconnect();
} catch (Exception localException4) {
}
if (in != null)
try {
in.close();
} catch (Exception localException5) {
}
if (connection != null)
try {
connection.disconnect();
} catch (Exception localException6) {
}
} finally {
if (in != null)
try {
in.close();
} catch (Exception localException7) {
}
if (connection != null)
try {
connection.disconnect();
} catch (Exception localException8) {
}
}
try {
connection.disconnect();
} catch (Exception localException11) {
}
}
}
} catch (Exception e) {
logger.error(e);
} finally {
if (out != null) {
out.flush();
out.close();
}
}
}
}
ajax跨域请求使用代理的更多相关文章
- 浅谈linux 下,利用Nginx服务器代理实现ajax跨域请求。
ajax跨域请求对于前端开发者几乎在任何一个项目中都会用到,众所周知,跨域请求有三种方式: jsonp; XHR2 代理: jsonp: 这种应该是开发中是使用的最多的,最常见的跨域请求方法,其实aj ...
- 用iframe设置代理解决ajax跨域请求问题
面对ajax跨域请求的问题,想用代理的方式来解决这个跨域问题.在服务器端创建一个静态的代理页面,在客户端用iframe调用这个代理 今天在项目中需要做远程数据加载并渲染页面,直到开发阶段才意识到aja ...
- 解决ajax跨域请求 (总结)
ajax跨域请求,目前已用几种方法实现: 1)用原生js的xhr对象实现. var url="http://freegeoip.net/json/" ...
- php中ajax跨域请求---小记
php中ajax跨域请求---小记 前端时间,遇到的一个问题,情况大约是这样: 原来的写法: 前端js文件中: $.ajax({ type:'get', url:'http://wan.xxx.c ...
- AJAX跨域请求json数据的实现方法
这篇文章介绍了AJAX跨域请求json数据的实现方法,有需要的朋友可以参考一下 我们都知道,AJAX的一大限制是不允许跨域请求. 不过通过使用JSONP来实现.JSONP是一种通过脚本标记注入的方式, ...
- 第114天:Ajax跨域请求解决方法(二)
一.什么是跨域 我们先回顾一下域名地址的组成: http:// www . google : 8080 / script/jquery.js http:// (协议号) www (子 ...
- 为什么返回的数据前面有callback? ashx/json.ashx?的后面加 callback=? 起什么作用 js url?callback=xxx xxx的介绍 ajax 跨域请求时url参数添加callback=?会实现跨域问题
为什么返回的数据前面有callback? 这是一个同学出现的问题,问到了我. 应该是这样的: 但问题是这样的: 我看了所请求的格式和后台要求的也是相同的.而且我也是这种做法,为什么他的就不行呢? ...
- JQ之$.ajax()方法以及ajax跨域请求
AJAX(Asynchronous javascript AND xml :异步javascript和xml):是一种创建交互式网页应用的网页开发技术.AJAX可以在不重新加载整个页面的情况下与服务器 ...
- Laravel中的ajax跨域请求
最近接触Laravel框架ajax跨域请求的过程中遇到一些问题,在这里做下总结. 一开始发起ajax请求一直报500错误,搜索相关资料后发现Laravel要允许跨域请求可以加入Cors中间件,代码如下 ...
随机推荐
- react css拓展 使用less
react 之中使用less 其实质只需要看一下resct 使用css的配置项,就能明白个大概了 第一步 还是下载 npm i less less-loader -save 下载less 和 ...
- 面向对象oop 和类
面向对象与面向过程的区别 面向对象:面向对象的思维模式说白了就是分类思维模式.思考问题首先会解决问题需要哪些分类,然后对这些分类进行单独思考.最后,才对某个分类下的细节进行面向过程的思索 自我理解(领 ...
- ETL详解
ETL是将业务系统的数据经过抽取.清洗转换之后加载到数据仓库的过程,目的是将企业中的分散.零乱.标准不统一的数据整合到一起,为企业的决策提供分析依据. ETL是BI项目重要的一个环节. 通常情况下,在 ...
- mysql在win系统dos 安装版配置步骤详解
1.准备工作 下载mysql的最新免安装版本mysql-noinstall-5.1.53-win32.zip,解压缩到相关目录,如:d:\ mysql-noinstall-5.1.53-win32.这 ...
- hdu多校第八场 1011 (hdu6667) Roundgod and Milk Tea 二分图匹配
题意: 有若干个班,每个班有些人要喝奶茶,也提供一些奶茶,一人喝一杯,但是自己班的人不能喝自己班的奶茶,求最多能有多少人喝上奶茶. 题解: 典型的二分图匹配问题,学生在左,奶茶在右,学生和非自己班的奶 ...
- NPAPI插件开发新手容易遇到的问题
在网上找了一个npdemo的例子,编译了一下在FireFox运行正常,在Chrome下就是不行,也没任何提示. 折腾了好久,最后发现是rc文件 支持语言编码问题 NPAPI插件开发详细记录:用VS20 ...
- 对A盾原理的小小总结,膜拜A神
A盾的原理是在驱动加载时重载os内核,获取原始ssdt表的地址. 应用层点击查询的代码在文件A-ProtectView.cpp中,每种点击操作调用相应的 query查询函数,在query函数里 Rea ...
- NtOpenProcess被HOOK,跳回原函数地址后仍然无法看到进程
点击打开链接http://www.ghoffice.com/bbs/read-htm-tid-103923.html
- centos7.4安装kubernetes1.6.0(开启TLS认证)
目录 目录 前言 集群详情 环境说明 安装前准备 提醒 一.创建TLS证书和秘钥 安装CFSSL 创建 CA (Certificate Authority) 创建 CA 配置文件 创建 CA 证书签名 ...
- Openstack贡献者须知 2 — 社区工作运作 & 代码贡献流程
目录 目录 前文列表 订阅邮件列表 Mailing Lists 社区工作运作流程 Openstack 代码贡献流程 PEP8 Python编程风格 查阅相关资源 前文列表 Openstack贡献者须知 ...