Em seu controller, você está criando um novo UserDaoImpl :
@RequestMapping(method = RequestMethod.GET, value="/{userId}", produces = {MediaType.APPLICATION_JSON_VALUE})
ResponseEntity<User> getUser(@PathVariable int userId){
UserDaoImpl user = new UserDaoImpl(); // <-- HERE
User u = new User();
u=user.getUser(userId);
return new ResponseEntity<User>(u, HttpStatus.OK);
}
Este UserDaoImpl não é gerenciado por spring, e não configurado/autowired. Você deve injetar em seu controller a instância de UserDao configurada no xml :
@Autowired
private UserDao userDao;
@RequestMapping(method = RequestMethod.GET, value="/{userId}", produces = {MediaType.APPLICATION_JSON_VALUE})
ResponseEntity<User> getUser(@PathVariable int userId){
User u = userDao.getUser(userId);
return new ResponseEntity<User>(u, HttpStatus.OK);
}