One issue is that your request mapping is missing the '/':
@RequestMapping("json1") -> @RequestMapping("/json1")
@RequestMapping("user") -> @RequestMapping("/user")
It could help :)