/ / Spring 4 Error 415 Erreur de type de support non pris en charge - java, ajax, json, spring, model-view-controller

Spring 4 Error 415 Erreur de type de support non pris en charge - java, ajax, json, ressort, contrôleur de modèle de vue

L'exécution de mon code Java renvoie toujours une erreur 415. J'utilise Spring 4.1.5 et plus rapide xml Jackson (core et 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() {...}
}

Le JavaScript est un simple HTTP GET:

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

Le contexte du printemps:

<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>

Quelqu'un peut-il signaler le problème?

Réponses:

1 pour la réponse № 1

Vous souhaitez que Spring convertisse automatiquement les JSON entrants en objets et les objets sortants en JSON, n'est-ce pas?

Si tel est le cas, vous devez configurer un MessageConverter!

Vous pouvez définir le convertisseur à l'intérieur du <mvc:annotation-driven /> déclaration. Exemple:

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

Facultatif, et uniquement si vous souhaitez que Spring convertisse le contenu du corps de la demande (par exemple du JSON) en un objet de domaine (ou un Map<String, String>) pour vous, vous devez utiliser le @RequestBody annotation.

S'amuser


0 pour la réponse № 2

Spring doit être la version 4.0.x.