With this code
@RequestMapping(value = \"/bar/foo\", method = RequestMethod.GET) public ResponseEntity foo() { Foo model; ...
In my case, I forgot to add library jackson-core.jar, I only added jackson-annotations.jar and jackson-databind.jar. When I added jackson-core.jar, it fixed the problem.