I have a web service that returns a list as JSON. It uses Jackson to map a List of Java POJOs into JSON. The problem is that the JSON representation has a wrapper object around
I get the same problem as you.
After add @ResponseBody in front of my list in my method declaration, the problem was solved.
eg :
public @ResponseBody List getObject