您好,登錄后才能下訂單哦!
jsp頁面ajax請(qǐng)求錯(cuò)誤:406Not Acceptable
后臺(tái)代碼:
[2017:05:1709:51:22]:Resolving exception from handler [publicjava.util.Map<java.lang.String, java.lang.Object> com.demo.controller.DemoController.findWxmpType()]:org.springframework.web.HttpMediaTypeNotAcceptableException: Could not findacceptable representation
項(xiàng)目環(huán)境:spingMVC 4.1.3 + spring + mybatis + jsp + jquery
傳輸數(shù)據(jù)格式:json
debug調(diào)試
【想直接看解決方案的,請(qǐng)直接到文章末尾處】
spring MVC部分配置:
<!-- 注解驅(qū)動(dòng) -->
<mvc:annotation-driven>
<!-- 如果自定義message-converters,默認(rèn)的message-converters將失效 -->
<mvc:message-converters>
<!-- 定義文本轉(zhuǎn)化器 -->
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg index="0"value="UTF-8" />
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
<!-- 定義Controller的掃描包 -->
<context:component-scan base-package="com.demo.controller"/>
<!-- 定義視圖解析器 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix"value="/WEB-INF/pages/" />
<property name="suffix"value=".jsp" />
</bean>
<!-- 處理靜態(tài)資源被“/”所攔截的問題 -->
<mvc:default-servlet-handler />
web.xml部分配置:
<!-- 加載spring配置文件 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext*.xml</param-value>
</context-param>
<!--Spring的ApplicationContext 載入:Spring的監(jiān)聽器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 加載SpringMVC的配置文件 -->
<servlet>
<servlet-name>demo</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/demo-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- 配置訪問映射的視圖路徑和后綴 -->
<servlet-mapping>
<servlet-name>demo</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<!—所有請(qǐng)求 -->
<!--<servlet-mapping>
<servlet-name>demo</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>-->
jsp頁面:
$.post(path+"/wxmp/findWxmpType.html",function(data){
alert(data);
console.info("msg:"+data.msg);
if(data.msg=="success"){
alert(data.msg);
}})
Controller代碼:
@RequestMapping(value = "/findWxmpType", method =RequestMethod.POST)
@ResponseBody
publicMap<String, Object> findWxmpType() {
Long startTime = System.currentTimeMillis();
Map<String,Object> maps= newHashMap<String, Object>();
try {
// 微信公眾號(hào)搜索列表
maps.put("msg", "success");
LOGGER.debug("響應(yīng)結(jié)果:maps【{}】", maps);
} catch (Exception e) {
LoggerUtil.errorLog("執(zhí)行失敗", startTime, System.currentTimeMillis(),
LOGGER, e);
maps.put("msg", "加載數(shù)據(jù)異常,請(qǐng)稍后再試");
}
returnmaps;
}
通過debug跟蹤,controller返回map集合數(shù)據(jù)是沒有問題的。
問題點(diǎn)出在:springMVC在對(duì)返回?cái)?shù)據(jù)進(jìn)行轉(zhuǎn)換處理的過程中!
網(wǎng)上百度了一下方法:
1,在controller返回的對(duì)象中必須包含getter/setter方法;(這個(gè)并不是問題原因)
2, 在controller的@RequestMapping(value= "/findWxmpType", method = RequestMethod.POST,produces="application/json")
加上紅色字體部分。并沒有解決問題,produces這個(gè)屬性,大家可以百度下其具體作用是什么。簡(jiǎn)單來說:就是用于匹配頁面的請(qǐng)求頭Accept信息是否和響應(yīng)頭Accept信息(produces設(shè)置)一致。
3,配置jackson轉(zhuǎn)換器,指定返回?cái)?shù)據(jù)類型為text/html;
<bean id="jacksonMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<!--解決 HttpMediaTypeNotAcceptableException: Could not findacceptable
representation -->
<propertyname="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
<!--<value>application/json;charset=UTF-8</value> -->
</list>
</property>
</bean>
這個(gè)解決方案,配置后運(yùn)行效果如下:
數(shù)據(jù)是可以進(jìn)行傳輸了,但已經(jīng)不是json格式,jsp無法直接取到msg數(shù)據(jù)。
so,并沒有解決問題!??!刪除配置!
springMVC在處理返回?cái)?shù)據(jù)的時(shí)候是通過轉(zhuǎn)換器HttpMessageConverter進(jìn)行處理的。
org.springframework.web.HttpMediaTypeNotAcceptableException:Could not find acceptable representation
這個(gè)錯(cuò)誤是:不能找到能接受的HttpMediaType協(xié)議。也就是說jsp頁面的請(qǐng)求頭Accept信息和controller返回的響應(yīng)頭accept頭信息不一致。
前端jsp的Accept頭信息:匹配所有。
指定MediaTypes為json:
進(jìn)入HttpMessageConverter轉(zhuǎn)換器源碼中:
插入一個(gè)小話題,eclipse跟蹤異常源碼方法:
點(diǎn)擊藍(lán)色部分:彈框:
點(diǎn)擊OK。
重新訪問頁面,進(jìn)入debug斷點(diǎn):
跟蹤A:
@Override
public List<MediaType>resolveMediaTypes(NativeWebRequest webRequest) throwsHttpMediaTypeNotAcceptableException {
for (ContentNegotiationStrategystrategy : this.contentNegotiationStrategies) {
List<MediaType>mediaTypes = strategy.resolveMediaTypes(webRequest);
if (mediaTypes.isEmpty() ||mediaTypes.equals(MEDIA_TYPE_ALL)) {
continue;
}
return mediaTypes;
}
return Collections.emptyList();
}
跟蹤B:resolveMediaTypes(webRequest);
@Override
public List<MediaType>resolveMediaTypes(NativeWebRequest webRequest) throwsHttpMediaTypeNotAcceptableException {
String key =getMediaTypeKey(webRequest);
if (StringUtils.hasText(key)) {
MediaType mediaType =lookupMediaType(key);
if (mediaType != null) {
handleMatch(key,mediaType);
returnCollections.singletonList(mediaType);
}
mediaType =handleNoMatch(webRequest, key);
if (mediaType != null) {
addMapping(key,mediaType);
returnCollections.singletonList(mediaType);
}
}
return Collections.emptyList();
}
跟蹤C:getMediaTypeKey(webRequest);從當(dāng)前請(qǐng)求request當(dāng)中獲取到MediaType
@Override
protected String getMediaTypeKey(NativeWebRequestwebRequest) {
//獲取request對(duì)象
HttpServletRequest servletRequest= webRequest.getNativeRequest(HttpServletRequest.class);
if (servletRequest == null) {
logger.warn("AnHttpServletRequest is required to determine the media type key");
return null;
}
//獲取當(dāng)前請(qǐng)求路徑:/wxmp/searchWxmps.html
String path =urlPathHelper.getLookupPathForRequest(servletRequest);
//獲取searchWxmps.html
String filename =WebUtils.extractFullFilenameFromUrlPath(path);
//獲取請(qǐng)求后綴:html
String extension =StringUtils.getFilenameExtension(filename);
return(StringUtils.hasText(extension)) ? extension.toLowerCase(Locale.ENGLISH) :null;
}
回到:跟蹤B:
下一步:
然后返回MediaType。
回到:跟蹤A:
下一步:直到ProducesRequestConverter:
下一步:
@Override
protected booleanmatchMediaType(HttpServletRequest request) throwsHttpMediaTypeNotAcceptableException {
//acceptedMediaTypes=text/html 在經(jīng)過springMVC解析之后的,頁面想要的數(shù)據(jù)頭信息
List<MediaType> acceptedMediaTypes =getAcceptedMediaTypes(request);
for (MediaTypeacceptedMediaType : acceptedMediaTypes) {
// getMediaType()=application/json我們配置的<value>application/json;charset=UTF8</value>
if(getMediaType().isCompatibleWith(acceptedMediaType)) {
return true;
}
}
return false;
}
結(jié)果就是:
在從jsp頁面發(fā)送ajax請(qǐng)求的時(shí)候,代碼是:
$.post(path+"/wxmp/findWxmpType.html",function(data){}
請(qǐng)求路徑為:http://m.demo.com/wxmp/findWxmpType.html這個(gè)后綴“.html”就是問題的根源。
該方法實(shí)際上只是為了請(qǐng)求數(shù)據(jù),完全可以不帶“.html”,但是在web.xml里面,進(jìn)行的偽靜態(tài)訪問配置<servlet-mapping>
因?yàn)樵撆渲?,所有的訪問,必須加上后綴“.html”才能進(jìn)入后臺(tái)。
帶上這個(gè)配置之后,springMVC在解析前臺(tái)請(qǐng)求頭信息Accept的時(shí)候,原本是:*/* ,卻解析成了:text/html
這樣的話,我們?cè)?/span>controller中加上@ResponseBody對(duì)返回?cái)?shù)據(jù)進(jìn)行json轉(zhuǎn)換,設(shè)置響應(yīng)頭Accept=application/json之后,匹配matchProduces異常。
1,在web.xml中添加這段配置:
<!—所有請(qǐng)求可進(jìn)入 -->
<servlet-mapping>
<servlet-name>wupao-mwss</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
也就是放開 前文web.xml中最后的注釋部分即可。
2,jsp頁面請(qǐng)求更改為:$.post(path+"/wxmp/findWxmpType",function(data){}
去掉”.html”即可解決問題?。?!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。