【问题标题】:Spring 4 Error 415 Unsupported Media Type ErrorSpring 4 错误 415 不支持的媒体类型错误
【发布时间】:2015-06-18 19:58:57
【问题描述】:

运行我的 Java 代码总是返回 415 错误。我正在使用 Spring 4.1.5 和 fasterxml Jackson (core and databind) 2.5.2

@RestController
@RequestMapping("/mainvm")
public class MainVMController {
    @RequestMapping(value = "/init",consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
    public Map<String, Object> init() {...}
}

JavaScript 是一个简单的 HTTP GET:

$.ajax({
    url : "mainvm/init",
    dataType : 'json',
    headers: { 
        'Accept': 'application/json',
        'Content-Type': 'application/json' 
    }
}).done(function() {}

Spring 上下文:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"           xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
    http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

<context:annotation-config />
<context:component-scan base-package="it.staer" />
<tx:annotation-driven transaction-manager="transactionManager" />
<bean
    class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
    <property name="cacheSeconds" value="0" />
</bean>

<!-- Hibernate/Jdbc Configuration -->
<context:property-placeholder location="classpath:jdbc.properties" />

<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"
    destroy-method="close" p:driverClassName="${jdbc.driverClassName}"
    p:url="${jdbc.url}" p:username="${jdbc.username}" p:password="${jdbc.password}" />
<bean id="sessionFactory"
    class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />     
</bean>

<!-- Resolver/mapping configuration -->

<bean id="viewResolver"
    class="org.springframework.web.servlet.view.UrlBasedViewResolver">
    <property name="viewClass"
        value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="/" />
    <property name="suffix" value=".jsp" />
</bean>
<mvc:resources mapping="/ui/**" location="/ui/" />
<mvc:default-servlet-handler/>  
<mvc:annotation-driven />

<bean id="transactionManager"
    class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>

谁能指出问题所在?

【问题讨论】:

标签: java ajax json spring model-view-controller


【解决方案1】:

Spring 需要是 4.0.x 版本。

【讨论】:

    【解决方案2】:

    您希望 Spring 自动将传入的 JSON 转换为对象并将传出的对象转换为 JSON,不是吗?

    如果是这样,那么你应该配置一个MessageConverter

    您可以在&lt;mvc:annotation-driven /&gt; 声明中定义转换器。示例:

    <mvc:annotation-driven>
        <mvc:message-converters>
            <bean id="jsonMessageConverter" 
                  class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"  />
        </mvc:message-converters>
    </mvc:annotation-driven>
    

    可选,并且仅当您希望 Spring 为您将请求正文内容(例如一些 JSON)转换为域对象(或 Map&lt;String, String&gt;)时,您应该使用 @RequestBody 注释。

    玩得开心

    【讨论】:

      猜你喜欢
      • 2016-09-10
      • 2021-10-12
      • 2018-10-13
      • 2018-07-25
      • 2016-09-09
      • 1970-01-01
      • 1970-01-01
      • 2017-08-28
      • 2015-02-25
      相关资源
      最近更新 更多