In uw controller maakt u een nieuwe UserDaoImpl aan:
@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);
}
Deze UserDaoImpl wordt niet beheerd door de lente, en niet geconfigureerd/autowired.U moet in uw controller de instantie van UserDao injecteren die is geconfigureerd in de 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);
}