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中间件,代码如下 ...
随机推荐
- 谷歌浏览器控制台出现 Unchecked runtime.lastError: The message port closed before a response was received. 的报错
错误截图: 解决:经过网上搜索说是浏览器扩展程序的问题,把那个扩展程序删除或者禁用就可以了
- quartz的使用(三)
1.在数据源数据库中执行下载的quartz的sql语句(创建11张表),其中表头qrtz_可以在在配置文件中更改,对应表创建时更改org.quartz.jobStore.tablePrefix=qrt ...
- 一起看下Apache1.3.22版本改进和修正了啥?
Apache 1.3.20 - 1.3.22主要改进: 安全弱点: 1.在Apache1.3.20的win32平台上发现了一个漏洞.如果客户端发送一个非常长的URI可能导致用目录列表来代替缺省主页.4 ...
- fastText一个库用于词表示的高效学习和句子分类
fastText fastText 是 Facebook 开发的一个用于高效学习单词呈现以及语句分类的开源库. 要求 fastText 使用 C++11 特性,因此需要一个对 C++11 支持良好的编 ...
- mac 安装并使用 mysql 或者 mac mysql 忘记密码,Can't connect to local MySQL server through socket homebrew
1. brew install mysql 2. 启动mysql mysql.server start 我遇到了这个error,查openstack解决,我在这粘一下 ### Error:Can't ...
- PAT_A1106#Lowest Price in Supply Chain
Source: PAT A1106 Lowest Price in Supply Chain (25 分) Description: A supply chain is a network of re ...
- python array基本操作一
一.排序 a = [2,3,4,1] b = np.argsort(a) # out:[3 0 1 2] # 输出:是一个数组,是按元素递增顺序的索引 二.查找 1.最大值及其索引 b = max(a ...
- MySQL查询语句详解,排序、分组、聚合函数、约束
create database day20; 查询的时候from前面的字段是需要显示出来的内容,后面是条件use day20;create table phones(id int,pinpai var ...
- sql实现查询某个字段在哪个表里 及结构是什么
) --数据库名 ) set @dbname2='aab' select @str = ' SELECT 表名=d.name,字段名=a.name,序号=a.column_id, 标识=is_iden ...
- Android笔记之ExpandableListView(悬浮吸顶Demo)
参考链接 ExpandableListView中item的定位问题 - RELY_ON_YOURSELF的博客 - CSDN博客(感觉写得很好,讲到了组位置.子位置及原始位置之间的转换) how to ...