@RequestMapping(value = "/product/{id}") public String product(Model model, @PathVariable long id) throws ProductNotFoundException { Product product = productService.findProduct(id); model.addAttribute("product", product); return "product"; }