@RequestMapping("/list")
 public List<Hello> list(Model model) {
   List<Hello> helloList = helloDao.findAll();
   return helloList;
 }