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中间件,代码如下 ...
随机推荐
- Dubbo从拜师到入坟
第一个Dubbo程序:Hello world 创建业务接口工程 我们将这个接口单独抽取出来,打成jar包被多个服务锁依赖 创建服务提供者Provider Provider工程的pom文件如下: < ...
- Go 算术运算符
Go 算术运算符 package main import "fmt" func main() { var a int = 21 var b int = 10 var c int c ...
- ionic:temple
ylbtech-ionic:temple 1.返回顶部 2.返回顶部 3.返回顶部 4.返回顶部 5.返回顶部 6.返回顶部 作者:ylbtech出处:http://ylb ...
- [转]mysql主从同步
Mysql镜像机制配置过程主服务器: 192.168.0.25从服务器: 192.168.0.26MYSQL版本:mysql-5.0.22.tar.gz安装日期:2010年5月14日 一.镜 ...
- Flex birdeye笔记
1.将官网示例demo运行起来 新建Flex项目,直接将官网src下的demo拷贝到新建的项目的src下 .将官网example-binaries目录下的文件拷贝到新建项目的bin-debug下即可 ...
- 拾遗:Perl 基础语法
Perl 常用的命令行参数 -i:将处理结果直接写入文件,可以通过 -i.bak 或 -i"/tmp/orig_*" 等形式,在修改之前进行备份 -e:启用 perl 的命令行模式 ...
- 02ubuntu下python环境安装
原文链接:https://blog.csdn.net/weixin_42549407/article/details/85198460 我安装的是python3.6.9 1.下载python的源码压缩 ...
- Python3数据科学入门与实践✍✍✍
Python3数据科学入门与实践 整个课程都看完了,这个课程的分享可以往下看,下面有链接,之前做java开发也做了一些年头,也分享下自己看这个视频的感受,单论单个知识点课程本身没问题,大家看的时候可 ...
- iOS开发之系统通讯录
@iOS调用操作通讯录所用的库文件 AddressBook.framewor ...
- Lunascape:将FireFox、Safari和IE合为一体的浏览器
转自:http://blog.bingo929.com/lunascape-firefox-safari-ie-all-in-one.html 作为前端开发/网页设计师,电脑中总是安装着各种不同内核渲 ...