I've spent the last six hours scouring Google and stackoverflow for an answer to this question. I'm originally a PHP developer, so bear with me - returning a JSON array from a PHP controller is trivial.
I'm using Spring MVC 3.0, and I simply want to return a JSON object back to some Javascript from my Spring MVC Controller. It seems that there is no easy way to currently do this using a portlet (https://jira.springsource.org/browse/SPR-7344). Solutions I have seen suggest creating another DispatcherServlet that serves up JSON responses, but I have yet to find a well-documented example of this. If anyone knows a good way to accomplish this (preferably with annotations), please do tell!
I was able to make it work in Spring 3.0.5 with two simple modifications:
Available in Spring 3.1 only - you may want to use setExtractValueFromSingleKeyModel in your MappingJacksonJsonView
If anybody is in intereset, I can post java code
Starting with Spring 3, a controller will automatically convert to json if using ajax get/post with application type of json (i.e. .getJSON and .postJSON in jQuery). This functionality is identical between the servlet and portlet variations of Spring MVC.
Here is a blog post explaining it.
http://blog.springsource.com/2010/01/25/ajax-simplifications-in-spring-3-0/
I ended up finding a workaround to return "JSON" from a Spring MVC portlet controller. Here's how I did it.
In my controller:
In "view.jsp":
Since the @ResourceMapping annotation currently doesn't support returning JSON, I just used org.json.JSONObject to convert my map to a JSON object, and then returned the toString() of this object. The value of @ResourceMapping should match the id of the resourceURL. The use of eval to convert the JSON string to Javascript poses a security risk, but I just included it because it's the simplest example. If you are worried about security, use a JSON parser.
Elaborating on @alex answer:
http://blog.springsource.com/2010/01/25/ajax-simplifications-in-spring-3-0/ does not apply to portlets at this time. See: https://jira.springsource.org/browse/SPR-7344