博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 3.2.* MVC通过Ajax获取JSON数据报406错误
阅读量:5068 次
发布时间:2019-06-12

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

Spring 3.2.x通过@ResponseBody标签返回JSON数据的方法都报406错: Failed to load resource: the server responded with a status of 406 (Not Acceptable) 以及报错描述: The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers () 于是,百度、Google了半天,发现遇到此问题的人挺多的,但是都是说什么添加Jackson什么的,我是采用的fastjson,换成Jackson尝试了半天均还是406。 后来在stackoverflow有人说是Spring 3.2的BUG,于是退回到3.1.*,不再报406了, 虽然换回 3.1不报错了,但还是想看看在处理ajax返回json数据的方式上两个版本到底有何区别,debug之。 debug到 org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(T returnValue,MethodParameter returnType,ServletServerHttpRequest inputMessage,ServletServerHttpResponse outputMessage),在以下代码处抛出了异常:

 

[java]
 
  1. if (compatibleMediaTypes.isEmpty()) {  
  2.         throw new HttpMediaTypeNotAcceptableException(allSupportedMediaTypes);  
  3.     }  

看 来是compatibleMediaTypes为空导致。看debug信息,经过比较发现3.1的requestedMediaTypes为[*/*], 而3.2的requestedMediaTypes却为[text/html],producibleMediaTypes都是[application /json],继而发现获取acceptableMediaTypes的方式3.1与3.2不同 3.1的

3.1的

[java]
 
  1. private List<MediaType> getAcceptableMediaTypes(HttpInputMessage inputMessage) {  
  2.         try {  
  3.             List<MediaType> result = inputMessage.getHeaders().getAccept();  
  4.             return result.isEmpty() ? Collections.singletonList(MediaType.ALL) : result;  
  5.         } catch (IllegalArgumentException ex) {  
  6.             if (logger.isDebugEnabled()) {  
  7.                 logger.debug("Could not parse Accept header: " + ex.getMessage());  
  8.             }  
  9.             return Collections.emptyList();  
  10.         }  
  11.     }  

3.2的

 

[java]
 
  1. private List<MediaType> getAcceptableMediaTypes(HttpServletRequest request) throws HttpMediaTypeNotAcceptableException {  
  2.         List<MediaType> mediaTypes = this.contentNegotiationManager.resolveMediaTypes(new ServletWebRequest(request));  
  3.         return mediaTypes.isEmpty() ? Collections.singletonList(MediaType.ALL) : mediaTypes;  
  4.     }  

看来问题就是出在这里了。不知Spring为何改变该实现方式??!! 

 

解决方法如下:

一、第一种 继续用Spring 3.1.4。

二、第二种

 

[html]
 
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2.     <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
  4.     xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"  
  5.     xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6.        
  7.         xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.              http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  9.              http://www.springframework.org/schema/context  
  10.              http://www.springframework.org/schema/context/spring-context-3.0.xsd  
  11.              http://www.springframework.org/schema/aop  
  12.              http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
  13.              http://www.springframework.org/schema/tx   
  14.              http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
  15.              http://www.springframework.org/schema/mvc    
  16.              http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">  

把spring-mvc-3.0.xsd 升级到 spring-mvc-3.2.xsd

 

[html]
 
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
  4. xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"  
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6.   
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.          http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  9.          http://www.springframework.org/schema/context  
  10.          http://www.springframework.org/schema/context/spring-context-3.0.xsd  
  11.          http://www.springframework.org/schema/aop  
  12.          http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
  13.          http://www.springframework.org/schema/tx   
  14.          http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
  15.         http://www.springframework.org/schema/mvc   
  16.         http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">  

 

然后把<mvc:annotation-driven>修改成如下格式

 

[html]
 
  1. <mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />   
  2. <bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">   
  3.     <property name="favorPathExtension" value="false" />  
  4.     <property name="favorParameter" value="false" />   
  5.     <property name="ignoreAcceptHeader" value="false" />   
  6.     <property name="mediaTypes" >   
  7.         <value>  
  8.             atom=application/atom+xml  
  9.             html=text/html  
  10.             json=application/json  
  11.             *=*/*  
  12.         </value>   
  13.     </property>  
  14. </bean>  

三、第三种

 

详情见下面的地址

四、第四种

spring 3.2时requestedMediaTypes却为[text/html]的情况报406错误,还有一个原因可能是由于采用的后缀有关,如果使 用*.htm,*.html等,默认就会采用[text/html]编码,若改成*.json,*.shtml等就OK

 

文章来源:http://blog.csdn.net/gbtyy/article/details/17165605

转载于:https://www.cnblogs.com/hhang/p/4286576.html

你可能感兴趣的文章
回家最好最快路线
查看>>
mysql面试题
查看>>
初识Hadoop
查看>>
window.open()打开子页面并从父页面取值
查看>>
软件测试系列--通用测试用例写作
查看>>
SQL语句题
查看>>
Android消息机制
查看>>
iOS应用支持IPV6,就那点事儿
查看>>
mysql命令行导入和导出数据
查看>>
css中span元素的width属性无效果原因及多种解决方案
查看>>
解决IIS6.0 无法访问
查看>>
JQuery-UI Dialog下使用服务器端按钮失效
查看>>
Python 前端 js基础
查看>>
HTML5程序设计--SVG
查看>>
洛谷P3328(bzoj 4085)毒瘤线段树
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
判断文本框输入的文字长度
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
Scaling Pinterest - From 0 To 10s Of Billions Of Page Views A Month In Two Years
查看>>