java web跨域请求

阅读更多

java  web中如何跨域请求呢?

使用jsonp,详情请参考:http://json-p.org/

页面代码如下:




    
    
	




 在浏览器中访问的效果:
java web跨域请求_第1张图片
 

后台采用spring mvc:

@ResponseBody
	@RequestMapping(value = "/text2",produces=SystemHWUtil.RESPONSE_CONTENTTYPE_JAVASCRIPT2 )
	public String text2(HttpServletRequest request, HttpServletResponse response,String contentType2,String callback)
			throws IOException {
		String content = null;
		Map map = new HashMap();

		map.put("fileName", "a.txt");
		content=JSONPUtil.getJsonP(map, callback);
		System.out.println(content);
		return content;

	}

 JSONPUtil.getJsonP 静态方法的实现如下:

/***
	 * 用于jsonp调用
	 * @param map : 用于构造json数据
	 * @param callback : 回调的javascript方法名
	 * @return
	 */
	public static String getJsonP(Map map,String callback)
	{
		ObjectMapper mapper = new ObjectMapper();
		String content = null;
		try {
			content = mapper.writeValueAsString(map);
			System.out.println(content);
		} catch (JsonGenerationException e) {
			e.printStackTrace();
		} catch (JsonMappingException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		if(ValueWidget.isNullOrEmpty(callback)){
			return content;
		}
		return callback+"("+content+")";
	}

 依赖jackson 库

后台返回的内容是:jsonpCallback({"fileName":"a.txt"})

content type是

 

注意:后台返回的形式是:函数名(参数),此处的函数名就是回调函数的名称

 

参考:

spring mvc设置应答体的content type

AJAX 跨域请求 - JSONP获取JSON数据:http://justcoding.iteye.com/blog/1366102

 

App Framework发送JSONP请求(3):

http://hw1287789687.iteye.com/blog/2190719

  • java web跨域请求_第2张图片
  • 大小: 21.8 KB
  • java web跨域请求_第3张图片
  • 大小: 7.3 KB
  • 查看图片附件

你可能感兴趣的:(跨域,跨域请求,跨域get,跨域访问,jsonp跨域)