Is Spring MVC 3.1 compatible with Jackson 2.0? Will Spring MVC's automatic detection of Jackson on the classpath, and delegation to Jackson for requests with a JSON content-type still work?
|
|
Keith Donald (of spring source) tweeted the following a while back.
I haven't tried the |
|||
|
Support for Jackson 2 has been added in Spring 3.2, and has also backported to Spring 3.1.2 (SPR-9507) |
|||||
|
|
For Spring 3.1.2 and Jackson 2 -
So for posterity, I'll list out a hack(? or is this the official way) to configure the Jackson converter. In this particular case, I am configuring the converter to return dates in the ISO-8601 format:
|
|||||||||
|
|
Since Spring 3.1.2 you simply have to add jackson-databind jar to your classpath. In Maven you can configure it like this:
The rest of the magic will be done by spring automatically. See: http://norrisshelton.wordpress.com/2012/07/15/spring-3-mvc-with-json-via-jackson-2-0/ |
||||
|
|
|
To be clear, Spring 3.1 doesn't have native support for Jackson 2. It's in Spring 3.2 |
|||||
|