json 415 Spring 3.2 不支持的媒体类型

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/14590640/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-03 18:43:33  来源:igfitidea点击:

415 Unsupported Media Type with Spring 3.2

jsonspringHymanson

提问by Tiny

I'm trying to insert and/or update data into the database using the PUTmethod via JSON using jQuery 1.6, (Hymanson 2.1.1and Spring 3.2.0).

我正在尝试PUT使用 jQuery 1.6(Hymanson 2.1.1和 Spring 3.2.0)通过 JSON的方法将数据插入和/或更新到数据库中。

The JS code is as follows.

JS代码如下。

 var itemsArray=[];
 var id;

function insertOrUpdate()
{
    var i=0;

    $('input[name="txtCharge[]"]').each(function()
    {
        isNaN($(this).val())||$(this).val()==''?itemsArray[i][2]='':itemsArray[i][2]=$(this).val();
        i++;
    });                

    $.ajax({
        headers: { 
            'Accept': 'application/json',
            'Content-Type': 'application/json' 
        },
        datatype:"json",
        type: "PUT",
        url: "/wagafashion/ajax/InsertZoneCharge.htm",
        data: "items=" + JSON.stringify(itemsArray)+"&zoneId="+id+"&t="+new Date().getTime(),
        success: function(response)
        {
            alert(response);
        },
        error: function(e)
        {
            alert('Error: ' + e);
        }
    });
}

The method inside the Spring controller which is mapped with the URL is as follows.

与 URL 映射的 Spring 控制器内部的方法如下。

@RequestMapping(value=("ajax/InsertZoneCharge"), method=RequestMethod.PUT, produces=MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody String insertZoneCharge(@RequestBody final MultiValueMap<String, String > data, final HttpServletResponse response, HttpServletRequest request)
{
    String message="";
    try
    {
        Map<String, String> params = data.toSingleValueMap();
        if(params.get("zoneId")==null||params.get("zoneId").equals("")||params.get("items")==null||params.get("items").equals(""))
        {
            response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
        }
        else
        {
            message=zoneChargeService.insertZoneCharge(params.get("zoneId"), params.get("items"));
        }
    }
    catch (IOException ex)
    {
        message="An error occured. Data can not be saved.";
        Logger.getLogger(ZoneCharge.class.getName()).log(Level.SEVERE, null, ex);
    }

    return message;
}

The server responds as the question implies,

服务器响应问题暗示,

415 Unsupported Media Type

415 不支持的媒体类型

The header information looks like the following.

标头信息如下所示。

Request URL:http://localhost:8080/wagafashion/ajax/InsertZoneCharge.htm
Request Method:PUT
Status Code:415 Unsupported Media Type
Request Headersview source
Accept:application/json
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:352
Content-Type:application/json
Cookie:JSESSIONID=72AAFCC832C29D14FFA937D00D428A81
Host:localhost:8080
Origin:http://localhost:8080
Referer:http://localhost:8080/wagafashion/admin_side/ZoneCharge.htm
User-Agent:Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17
X-Requested-With:XMLHttpRequest
Request Payload
items=[[1,10,"12.35"],[2,10.5,"16.00"],[3,11,"20.00"],[4,11.5,"30.00"],[5,12,"40.00"],[6,12.5,"50.00"],[7,13,"60.00"],[8,13.5,"70.00"],[9,14,""],[10,14.5,""],[11,15,""],[12,15.5,""],[13,16,""],[14,16.5,""],[15,17,""],[16,17.5,""],[17,18,""],[18,18.5,""],[19,19,""],[20,19.5,""],[24,20,""],[25,20.5,""],[26,21,""],[41,21.5,""]]&zoneId=45&t=1359485680332
Response Headersview source
Content-Length:1048
Content-Type:text/html;charset=utf-8
Date:Tue, 29 Jan 2013 18:54:40 GMT
Server:Apache-Coyote/1.1


The entire dispatcher-servlet.xmlfile is as follows.

整个dispatcher-servlet.xml文件如下。

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"

       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">


    <context:component-scan base-package="controller" />
    <context:component-scan base-package="validatorbeans" />

    <mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" >
        <mvc:message-converters register-defaults="false">
        <bean id="HymansonMessageConverter"
              p:supportedMediaTypes="application/json"
              class="org.springframework.http.converter.json.MappingHymanson2HttpMessageConverter"/>
    </mvc:message-converters>
    </mvc:annotation-driven>

    <bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
        <property name="favorPathExtension" value="false" />
        <property name="favorParameter" value="false" />
        <property name="ignoreAcceptHeader" value="false" />
        <property name="mediaTypes" >
            <value>
                atom=application/atom+xml
                html=text/html
                json=application/json
                *=*/*
            </value>
        </property>                    
    </bean>


    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
    <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="index.htm">indexController</prop>
            </props>
        </property>
    </bean>

    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/jsp/"
          p:suffix=".jsp" />

    <bean name="indexController"
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"
          p:viewName="index" />
</beans>

It works when I remove @RequestBody final MultiValueMap<String, String > data, a method parameter and simply use @PathVariableto accept request parameters.

当我删除@RequestBody final MultiValueMap<String, String > data一个方法参数并仅用于@PathVariable接受请求参数时,它会起作用。

回答by Arjan

The content type that the browser sends, Content-Type: application/json, does not seem to match @RequestBody final MultiValueMap<String, String > data.

浏览器发送的内容类型 ,Content-Type: application/json似乎与 不匹配@RequestBody final MultiValueMap<String, String > data

Either:

任何一个:

回答by Juan

I had the same problem, the way to solve it was removing @RequestBody and then taking the data from the request (with IOUtils from apache commons). It should be noted that I used the received data just for logging js errors.

我遇到了同样的问题,解决它的方法是删除 @RequestBody 然后从请求中获取数据(使用来自 apache commons 的 IOUtils)。应该注意的是,我将接收到的数据仅用于记录 js 错误。

/**
 * this method logs with log4j the received js errors 
 */
@RequestMapping(value = "/jsloggerservice/{applicationName}", method = RequestMethod.POST)
public void jsLogger(HttpServletRequest request, HttpServletResponse response) {
    try {
        String message = IOUtils.toString( request.getInputStream());
        log.info("JAVASCRIPT-ERROR: " + message);
        response.getWriter().write("OK");
    } 
    catch (UnsupportedEncodingException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

回答by Tiina

In the server side, in Spring 3, you need this:

在服务器端,在 Spring 3 中,你需要这样:

<bean id = "mappingHymansonHttpMessageConverter" class = "org.springframework.http.converter.json.MappingHymansonHttpMessageConverter" />

<!-- starting Spring MVC annotation usage,handling request and annotation pojo mapping-->
<bean class ="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" >
    <property name= "messageConverters" >
         <list>
            <ref bean= "mappingHymansonHttpMessageConverter"/>
         </list>
    </property>
</bean>

Spring 4 uses mappingHymanson2HttpMessageConverter. Without AnnotationMethodHandlerAdapterbean declaration, you can also use @RequestBody, while by declaring it we can set mappingHymanson2HttpMessageConverterto messageConverters. This is concluded by phenomena that I observed, if wrong please correct.

Spring 4 使用mappingHymanson2HttpMessageConverter. 如果没有AnnotationMethodHandlerAdapterbean 声明,您也可以使用@RequestBody,而通过声明我们可以将其设置mappingHymanson2HttpMessageConvertermessageConverters。这是根据我观察到的现象得出的结论,如有错误请指正。

回答by smakks

Just in case somebody encounters this: I had two Methods

以防万一有人遇到这个:我有两个方法

void setLevel (Level level) void setLevel (String level)

void setLevel(级别级别) void setLevel(字符串级别)

in the Class annotated with @RequestBody and that also caused a 415.

在用@RequestBody 注释的类中,这也导致了 415。

回答by CodeChimp

I think your browser is not supporting whatever your returning. An explaination of an HTTP 415seems to indicate this. What is the server sending as the Content-Type in the response?

我认为您的浏览器不支持您返回的任何内容。对HTTP 415的解释似乎表明了这一点。服务器在响应中作为 Content-Type 发送什么?