Ejemplo n.º 1
0
 @RequestMapping(value = "/{distillery}/malts", method = RequestMethod.GET)
 public ModelAndView getMaltsByDistillery(@PathVariable("distillery") String distillery) {
   List<Malt> malts = scotchService.getMaltsByDistillery(distillery);
   ModelAndView mav = new ModelAndView("malt", Malt.class.getName(), malts);
   return mav;
 }