Move feed message converters ahead of jackson/jaxb2

The Atom/RSS message converters are now registered ahead of the
Jackson and the JAXB2 message converters by default. Since the Atom
and RSS converters convert to and from very specific object types
Feed and Channel respectively, that shouldn't introduce any regressions
and will work more intuitively when the requested media type is "*/*".

Issue: SPR-9054
This commit is contained in:
Rossen Stoyanchev
2012-07-06 16:00:22 -04:00
parent 2b4a516980
commit e860fa9a8b
4 changed files with 37 additions and 24 deletions

View File

@@ -20,6 +20,7 @@ Changes in version 3.2 M2 (2012-08-xx)
* DispatcherPortlet does not forward event exceptions to the render phase by default (SPR-9287)
* add defaultCharset property to StringHttpMessageConverter
* add @ExceptionResolver annotation to detect classes with @ExceptionHandler methods
* move RSS/Atom message converter registration ahead of jackson/jaxb2
Changes in version 3.2 M1 (2012-05-28)