gpt4 book ai didi

ajax - Spring MVC 无法返回 JSONArray 对象错误 406

转载 作者:行者123 更新时间:2023-12-02 19:21:06 25 4
gpt4 key购买 nike

我正在尝试从 spring mvc Controller 返回 JSONArray 对象。但我在浏览器上收到 406 错误。这是一个ajax请求,我使用jquery来发出请求。

Spring Controller 方法:

@RequestMapping("/getAuthorizedScreensForUser.do")  
public @ResponseBody JSONArray getAuthorizedScreensForUser(HttpSession session){
UserAuthDetails userAuthDetails = (UserAuthDetails) session.getAttribute("userauthdetails");
//This method returns JSONArray
return webUtilsService.getJSONArrayResponseForAuthorizedScreens(userAuthDetails.getScrnfldacss());
}

我已经在 spring-context.xml 中尝试了这两个条目

    <mvc:annotation-driven>  
<mvc:message-converters>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="prefixJson" value="true"/>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>

<mvc:annotation-driven/>  

我的 pom.xml 具有以下依赖项:

<dependency>  
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.12</version>
</dependency>

<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.12</version>
</dependency>

我正在运行 WAS 8。不确定问题是什么。我能够返回 json 格式的简单对象,但不能返回 JSONArray 对象。如果我做错了什么,请告诉我。

我知道有很多现有的线程有相同的讨论。但我没有找到任何人提供 JSONArray 对象示例。帕万·乔普拉

最佳答案

406 表示您的请求不包含与响应中的接受 header 匹配的接受 header 。这来自W3 :

The resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept headers sent in the request.

我会首先查看请求。确保请求 header 中有“application/json”。然后,确保将响应的 Content-Type 设置为相同。

关于ajax - Spring MVC 无法返回 JSONArray 对象错误 406,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15210146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com