-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MappingJacksonHttpMessageConverter default media type should include *+json [SPR-7905] #12560
Comments
David commented This is affecting me as well. Unfortunately, I can't use the suggested workaround because removing <annotation-driven> breaks other things: Ambiguous handler methods mapped for HTTP path '/projects': If you intend to handle the same path in multiple methods, then factor them out into a dedicated handler (in my case, I have multiple methods in my controller for the same path but different produces= values, If I add the MappingJacksonHttpMessageConverter bean I tried to add a MappingJacksonHttpMessageConverter Thus, I don't see how to work around this in a maintainable way. I think this should be changed from Minor to Normal, or some other workaround provided. |
David Melia commented Hi, Just a reply to David in that using Spring 3.1 you can still use annotation driven as such: <mvc:annotation-driven >
<mvc:message-converters register-defaults="false">
<bean class="org.springframework.http.converter.StringHttpMessageConverter" />
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<bean class="org.springframework.http.MediaType">
<constructor-arg value="application" />
<constructor-arg value="json" />
</bean>
<bean class="org.springframework.http.MediaType">
<constructor-arg value="application" />
<constructor-arg value="*+json" />
</bean>
</list>
</property>
</bean>
<bean class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter" />
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter" />
<bean class="org.springframework.http.converter.FormHttpMessageConverter" />
<bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter" />
</mvc:message-converters>
</mvc:annotation-driven> however I stand by my original request as the above is verbose. Thanks |
David commented Excellent - this works! Since we'll have multiple web apps/servlets needing to do this,
instead of the MappingJacksonHttpMessageConverter bean config above, and thereby reduce maintenance and clutter. Thanks, |
Tim Meighen commented I have added Pull Request #130 for this. |
Rossen Stoyanchev commented |
Felix Barnsteiner commented
Works as well and is less verbose. |
David Melia opened SPR-7905 and commented
Hi,
Currently in my REST service which supports both XML and JSON I am using the accept header so the same URL can provide different end points which will provide versioning. So my accept header is of the format
which can route through the the v1 (version1) version of my REST method. The above is fine for XML as AbstractXmlHttpMessageConverter (subclass of Jaxb2RootElementHttpMessageConverter) registers the media type
This would result in a lot less configuration as I have to do the following in place of mvc:annotation-driven/
Thanks
Affects: 3.0.5
Issue Links:
Referenced from: commits 8270d82, e16c403, 4f114a6
4 votes, 8 watchers
The text was updated successfully, but these errors were encountered: