}
@RequestMapping("/advisor/{country}/{city}/{name}/review/{index}")
public String hotelReview(@PathVariable String country, @PathVariable String city, @PathVariable String name,
@PathVariable int index, Model model) {
Review review = this.hotelService.getReview(getHotel(country, city, name), index);
model.addAttribute(review);
return "review";
}