You've annotated the controller method as producing JSON, but it returns void. You probably want to annotate the method with @ResponseBody and change its return type to allow you to return an object representation of the JSON that you want to include in the response